brian 97/01/20 01:02:55
Modified: src mod_imap.c Log: Reviewed by: Brian Behlendorf Submitted by: Marc Slemko Small bugfix due to think-o. Revision Changes Path 1.16 +1 -1 apache/src/mod_imap.c Index: mod_imap.c =================================================================== RCS file: /export/home/cvs/apache/src/mod_imap.c,v retrieving revision 1.15 retrieving revision 1.16 diff -C3 -r1.15 -r1.16 *** mod_imap.c 1997/01/20 04:28:13 1.15 --- mod_imap.c 1997/01/20 09:02:54 1.16 *************** *** 686,692 **** } /* blank lines and comments are ignored if we aren't printing a menu */ ! if (sscanf(input, "%.200s %.200s", directive, value) != 2) { continue; /* make sure we read two fields */ } /* Now skip what we just read... we can't use ANSIism %n */ --- 686,692 ---- } /* blank lines and comments are ignored if we aren't printing a menu */ ! if (sscanf(input, "%255s %255s", directive, value) != 2) { continue; /* make sure we read two fields */ } /* Now skip what we just read... we can't use ANSIism %n */