You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ma...@hyperreal.org on 1998/01/19 16:08:41 UTC

cvs commit: apachen/src/main util.c

martin      98/01/19 07:08:41

  Modified:    src/main util.c
  Log:
  [PORT] fix the renamed _toascii references (I missed some)
  
  Revision  Changes    Path
  1.86      +3 -3      apachen/src/main/util.c
  
  Index: util.c
  ===================================================================
  RCS file: /home/cvs/apachen/src/main/util.c,v
  retrieving revision 1.85
  retrieving revision 1.86
  diff -u -u -r1.85 -r1.86
  --- util.c	1998/01/16 14:22:55	1.85
  +++ util.c	1998/01/19 15:08:39	1.86
  @@ -1612,11 +1612,11 @@
   
       while (nprbytes > 0) {
   	*(bufout++) = os_toebcdic[
  -	    (unsigned char) (pr2six[os_toascii[*bufin]] << 2 | pr2six[_toascii[bufin[1]]] >> 4)];
  +	    (unsigned char) (pr2six[os_toascii[*bufin]] << 2 | pr2six[os_toascii[bufin[1]]] >> 4)];
   	*(bufout++) = os_toebcdic[
  -	    (unsigned char) (pr2six[os_toascii[bufin[1]]] << 4 | pr2six[_toascii[bufin[2]]] >> 2)];
  +	    (unsigned char) (pr2six[os_toascii[bufin[1]]] << 4 | pr2six[os_toascii[bufin[2]]] >> 2)];
   	*(bufout++) = os_toebcdic[
  -	    (unsigned char) (pr2six[os_toascii[bufin[2]]] << 6 | pr2six[_toascii[bufin[3]]])];
  +	    (unsigned char) (pr2six[os_toascii[bufin[2]]] << 6 | pr2six[os_toascii[bufin[3]]])];
   	bufin += 4;
   	nprbytes -= 4;
       }