]> granicus.if.org Git - apache/commitdiff
fix a compile break on EBCDIC machines
authorJeff Trawick <trawick@apache.org>
Fri, 26 Apr 2002 14:43:18 +0000 (14:43 +0000)
committerJeff Trawick <trawick@apache.org>
Fri, 26 Apr 2002 14:43:18 +0000 (14:43 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94812 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/proxy_ftp.c

index 193722b0b264b77944a324b947ad991c3dca463f..e810db7458fdb4b079271590b167a1382e1aa337 100644 (file)
@@ -163,7 +163,7 @@ static int ftp_check_string(const char *x)
         if (ch == '\r' || ch == '\n')
             return 0;
         buf[0] = ch;
-        ap_xlate_proto_to_ascii(buf);
+        ap_xlate_proto_to_ascii(buf, 1);
         if (buf[0] & 0x80)
 #endif                          /* APR_CHARSET_EBCDIC */
             return 0;