brian       97/07/31 20:32:03

  Modified:    src       mod_setenvif.c
  Log:
  Fix compiler warnings from -Wall.
  
  Revision  Changes    Path
  1.2       +2 -1      apache/src/mod_setenvif.c
  
  Index: mod_setenvif.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_setenvif.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- mod_setenvif.c    1997/07/31 20:56:24     1.1
  +++ mod_setenvif.c    1997/08/01 03:32:02     1.2
  @@ -112,6 +112,7 @@
   #include "httpd.h"
   #include "http_config.h"
   #include "http_core.h"
  +#include "http_log.h"
   
   typedef struct {
       char *name;                      /* header name */
  @@ -179,7 +180,7 @@
                        cmd->cmd->name, NULL);
        return error;
       }
  -    while (feature = getword_conf(cmd->pool, &cmdline)) {
  +    while ((feature = getword_conf(cmd->pool, &cmdline))) {
        beenhere++;
   
        /*
  
  
  

Reply via email to