Received: by taz.hyperreal.com (8.8.3/V2.0) id BAA01027; Mon, 20 Jan 1997 01:02:58 -0800 (PST) Received: by taz.hyperreal.com (8.8.3/V2.0) id BAA01021; Mon, 20 Jan 1997 01:02:56 -0800 (PST) Date: Mon, 20 Jan 1997 01:02:56 -0800 (PST) From: Brian Behlendorf Message-Id: <199701200902.BAA01021@taz.hyperreal.com> To: apache-cvs@hyperreal.com Subject: cvs commit: apache/src mod_imap.c Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@hyperreal.com 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 */