You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ma...@hyperreal.org on 1998/09/30 10:36:21 UTC

cvs commit: apache-1.3/src/os/bs2000 bs2login.c

martin      98/09/30 01:36:21

  Modified:    src/os/bs2000 bs2login.c
  Log:
  Fix: because of duplicate config reading, the test
  for multiple use of BS2000Account directive was wrong
  
  Revision  Changes    Path
  1.5       +0 -3      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.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- bs2login.c	1998/09/17 20:23:46	1.4
  +++ bs2login.c	1998/09/30 08:36:20	1.5
  @@ -67,9 +67,6 @@
   /* It stores the account name for later use */
   const char *os_set_account(pool *p, const char *account)
   {
  -    if (bs2000_account != NULL && strcasecmp(bs2000_account, account) != 0)
  -        return "BS2000Account: can be defined only once.";
  -
       bs2000_account = ap_pstrdup(p, account);
       return NULL;
   }