dgaudet     98/03/16 23:39:58

  Modified:    src/main util.c
  Log:
  remove spacetoplus and plustospace, unused and not declared in any .h
  
  Revision  Changes    Path
  1.106     +0 -18     apache-1.3/src/main/util.c
  
  Index: util.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/main/util.c,v
  retrieving revision 1.105
  retrieving revision 1.106
  diff -u -r1.105 -r1.106
  --- util.c    1998/03/16 00:24:14     1.105
  +++ util.c    1998/03/17 07:39:57     1.106
  @@ -1055,24 +1055,6 @@
       return cmd;
   }
   
  -void plustospace(char *str)
  -{
  -    register int x;
  -
  -    for (x = 0; str[x]; x++)
  -     if (str[x] == '+')
  -         str[x] = ' ';
  -}
  -
  -void spacetoplus(char *str)
  -{
  -    register int x;
  -
  -    for (x = 0; str[x]; x++)
  -     if (str[x] == ' ')
  -         str[x] = '+';
  -}
  -
   static char x2c(const char *what)
   {
       register char digit;
  
  
  

Reply via email to