coar 98/09/24 03:41:56
Modified: src/modules/standard mod_autoindex.c
Log:
Oops. Logical NOT used instead of bitwise.
Submitted by: Ben Yoshino <[EMAIL PROTECTED]>
Reviewed by: Ken Coar
Revision Changes Path
1.92 +1 -1 apache-1.3/src/modules/standard/mod_autoindex.c
Index: mod_autoindex.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_autoindex.c,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- mod_autoindex.c 1998/09/02 21:04:41 1.91
+++ mod_autoindex.c 1998/09/24 10:41:55 1.92
@@ -293,7 +293,7 @@
cfg = (autoindex_config_rec *) d;
curopts = cfg->opts;
- newopts = (arg ? (curopts | FANCY_INDEXING) : (curopts &
!FANCY_INDEXING));
+ newopts = (arg ? (curopts | FANCY_INDEXING) : (curopts &
~FANCY_INDEXING));
cfg->opts = newopts;
return NULL;
}