You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Dean Gaudet <dg...@hyperreal.com> on 1997/06/30 22:38:55 UTC

cvs commit: apache/src mod_userdir.c

dgaudet     97/06/30 13:38:54

  Modified:    src       mod_userdir.c
  Log:
  Fix a compile warning.
  
  Revision  Changes    Path
  1.17      +4 -7      apache/src/mod_userdir.c
  
  Index: mod_userdir.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_userdir.c,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -C3 -r1.16 -r1.17
  *** mod_userdir.c	1997/06/30 01:32:24	1.16
  --- mod_userdir.c	1997/06/30 20:38:53	1.17
  ***************
  *** 161,173 ****
            usertable = s_cfg->enabled_users;
        }
        else {
  !         optype = O_DEFAULT;
  !     }
  !     /*
  !      * If the first (only?) value isn't one of our keywords, just copy the
  !      * string to the userdir string.
  !      */
  !     if (optype == O_DEFAULT) {
            s_cfg->userdir = pstrdup (cmd->pool, arg);
            return NULL;
        }
  --- 161,170 ----
            usertable = s_cfg->enabled_users;
        }
        else {
  ! 	/*
  ! 	 * If the first (only?) value isn't one of our keywords, just copy the
  ! 	 * string to the userdir string.
  ! 	 */
            s_cfg->userdir = pstrdup (cmd->pool, arg);
            return NULL;
        }