From: Ken Coar Date: Wed, 9 Jan 2002 19:47:03 +0000 (+0000) Subject: Whoops, forgot to bump MMN. Major bump because of a change X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db752f0c318ab81e9a50c940b9e684c36dab3f3a;p=thirdparty%2Fapache%2Fhttpd.git Whoops, forgot to bump MMN. Major bump because of a change to the semi-private core_dir_config structure. (Also fix a stale comment from an earlier version of the FileETag patch.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@92787 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/include/ap_mmn.h b/src/include/ap_mmn.h index fd99387b72e..11fdde1719e 100644 --- a/src/include/ap_mmn.h +++ b/src/include/ap_mmn.h @@ -233,14 +233,16 @@ * 19990320.10 - add ap_is_rdirectory() and ap_stripprefix() * 20011130.11 - Add a couple of fields, callback_data and * filter_callback to the end of buff.h + * 20020108.0 - Add some fields to the end of the core_dir_config + * structure */ #define MODULE_MAGIC_COOKIE 0x41503133UL /* "AP13" */ #ifndef MODULE_MAGIC_NUMBER_MAJOR -#define MODULE_MAGIC_NUMBER_MAJOR 19990320 +#define MODULE_MAGIC_NUMBER_MAJOR 20020108 #endif -#define MODULE_MAGIC_NUMBER_MINOR 11 /* 0...n */ +#define MODULE_MAGIC_NUMBER_MINOR 0 /* 0...n */ /* Useful for testing for features. */ #define AP_MODULE_MAGIC_AT_LEAST(major,minor) \ diff --git a/src/main/http_core.c b/src/main/http_core.c index bd2e3e3eb18..a678e24a14b 100644 --- a/src/main/http_core.c +++ b/src/main/http_core.c @@ -3013,7 +3013,7 @@ set_debug_header(cmd_parms *cmd, core_dir_config *m, int arg) #endif /* CHARSET_EBCDIC */ /* - * Note whether file inodes may be used when forming ETag values. + * Note what data should be used when forming file ETag values. * It would be nicer to do this as an ITERATE, but then we couldn't * remember the +/- state properly. */