martin      99/12/09 04:10:12

  Modified:    src/os/bs2000 bs2login.c ebcdic.c
  Log:
  First cut at using the CRLF macro changes of Gil's patch.
  Next step is replacement of all xxx_strictly stuff by xxx
  (and renaming the os_toascii_strictly[] table to os_toascii[])
  
  Revision  Changes    Path
  1.13      +0 -1      apache-1.3/src/os/bs2000/bs2login.c
  
  Index: bs2login.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/os/bs2000/bs2login.c,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- bs2login.c        1999/07/26 07:46:55     1.12
  +++ bs2login.c        1999/12/09 12:10:11     1.13
  @@ -192,7 +192,6 @@
   {
       _rini_struct            inittask; 
       char                    username[USER_LEN+1];
  -    int                     save_errno;
       bs2_ForkType            type = os_forktype();
   
       /* We can be sure that no change to uid==0 is possible because of
  
  
  
  1.12      +1 -1      apache-1.3/src/os/bs2000/ebcdic.c
  
  Index: ebcdic.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/os/bs2000/ebcdic.c,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- ebcdic.c  1999/11/24 17:12:19     1.11
  +++ ebcdic.c  1999/12/09 12:10:12     1.12
  @@ -235,7 +235,7 @@
       const unsigned char *usrce = srce;
   
       while (count-- != 0) {
  -        *udest++ = os_toascii[*usrce++];
  +        *udest++ = os_toascii_strictly[*usrce++];
       }
   }
   void
  
  
  

Reply via email to