rse         99/06/29 07:27:43

  Modified:    src      CHANGES
               src/main http_main.c
  Log:
  Fixed `httpd' usage display: -D was missing.
  PR: 4614
  
  Revision  Changes    Path
  1.1389    +3 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1388
  retrieving revision 1.1389
  diff -u -r1.1388 -r1.1389
  --- CHANGES   1999/06/29 14:16:42     1.1388
  +++ CHANGES   1999/06/29 14:27:39     1.1389
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.7
   
  +  *) Fixed `httpd' usage display: -D was missing.
  +     [Ralf S. Engelschall] PR#4614
  +
     *) Fix `make r' test procedure in src/regex/: ap_isprint was not found.
        [Ralf S. Engelschall] PR#4561, PR#4562
   
  
  
  
  1.451     +2 -2      apache-1.3/src/main/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/main/http_main.c,v
  retrieving revision 1.450
  retrieving revision 1.451
  diff -u -r1.450 -r1.451
  --- http_main.c       1999/06/24 16:38:50     1.450
  +++ http_main.c       1999/06/29 14:27:42     1.451
  @@ -1028,9 +1028,9 @@
        pad[i] = ' ';
       pad[i] = '\0';
   #ifdef SHARED_CORE
  -    fprintf(stderr, "Usage: %s [-R directory] [-d directory] [-f file]\n", 
bin);
  +    fprintf(stderr, "Usage: %s [-R directory] [-D name] [-d directory] [-f 
file]\n", bin);
   #else
  -    fprintf(stderr, "Usage: %s [-d directory] [-f file]\n", bin);
  +    fprintf(stderr, "Usage: %s [-D name] [-d directory] [-f file]\n", bin);
   #endif
       fprintf(stderr, "       %s [-C \"directive\"] [-c \"directive\"]\n", 
pad);
       fprintf(stderr, "       %s [-v] [-V] [-h] [-l] [-L] [-S] [-t]\n", pad);
  
  
  

Reply via email to