From: Jeff Trawick Date: Fri, 26 Apr 2002 14:43:18 +0000 (+0000) Subject: fix a compile break on EBCDIC machines X-Git-Tag: 2.0.36~73 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3b7f35cd829805076c4da05431641f8548f3c0d6;p=apache fix a compile break on EBCDIC machines git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94812 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_ftp.c b/modules/proxy/proxy_ftp.c index 193722b0b2..e810db7458 100644 --- a/modules/proxy/proxy_ftp.c +++ b/modules/proxy/proxy_ftp.c @@ -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;