You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2002/04/26 16:43:19 UTC

cvs commit: httpd-2.0/modules/proxy proxy_ftp.c

trawick     02/04/26 07:43:19

  Modified:    modules/proxy proxy_ftp.c
  Log:
  fix a compile break on EBCDIC machines
  
  Revision  Changes    Path
  1.119     +1 -1      httpd-2.0/modules/proxy/proxy_ftp.c
  
  Index: proxy_ftp.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/proxy/proxy_ftp.c,v
  retrieving revision 1.118
  retrieving revision 1.119
  diff -u -r1.118 -r1.119
  --- proxy_ftp.c	25 Apr 2002 22:12:50 -0000	1.118
  +++ proxy_ftp.c	26 Apr 2002 14:43:18 -0000	1.119
  @@ -163,7 +163,7 @@
           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;