coar 98/05/08 05:09:48
Modified: . STATUS htdocs/manual new_features_1_3.html htdocs/manual/mod core.html src/main http_main.c Log: Change the default setting of AddVersionPlatform to 'on'. Jim, Brian Havard, and Marc think that's better - and if Marc, who is so security-conscious, thinks it's a good idea that tips me over to that side as well. Revision Changes Path 1.385 +1 -1 apache-1.3/STATUS Index: STATUS =================================================================== RCS file: /export/home/cvs/apache-1.3/STATUS,v retrieving revision 1.384 retrieving revision 1.385 diff -u -r1.384 -r1.385 --- STATUS 1998/05/08 11:55:11 1.384 +++ STATUS 1998/05/08 12:09:44 1.385 @@ -146,7 +146,7 @@ * What do to about SERVER_SUBVERSION now? STATUS: o Scrap it now that modules can use ap_add_version_component - Jim +1 (make sure this is clear :) ), Brian +1 + Jim +1 (make sure this is clear :) ), Brian +1, Ken +1 * Paul would like to see a 'gdbm' option because he uses it a lot. 1.56 +2 -1 apache-1.3/htdocs/manual/new_features_1_3.html Index: new_features_1_3.html =================================================================== RCS file: /export/home/cvs/apache-1.3/htdocs/manual/new_features_1_3.html,v retrieving revision 1.55 retrieving revision 1.56 diff -u -r1.55 -r1.56 --- new_features_1_3.html 1998/05/07 14:28:42 1.55 +++ new_features_1_3.html 1998/05/08 12:09:45 1.56 @@ -651,7 +651,8 @@ be modified without having to recompile the server. And the <SAMP>AddVersionPlatform</SAMP> directive controls whether the server will include a non-specific note in the server identity about the type of - operating system on which the server is running. + operating system on which the server is running. As of Apache 1.3, this + additional information is included by default. </LI> </UL> 1.114 +2 -2 apache-1.3/htdocs/manual/mod/core.html Index: core.html =================================================================== RCS file: /export/home/cvs/apache-1.3/htdocs/manual/mod/core.html,v retrieving revision 1.113 retrieving revision 1.114 diff -u -r1.113 -r1.114 --- core.html 1998/05/07 12:24:21 1.113 +++ core.html 1998/05/08 12:09:46 1.114 @@ -260,7 +260,7 @@ </DT> <DD>Server sends: <SAMP>Server-Version: Apache/1.3.0</SAMP> </DD> - <DT><CODE>AddVersionPlatform On</CODE> + <DT><CODE>AddVersionPlatform On</CODE> (or not specified) </DT> <DD>Server sends: <SAMP>Server-Version: Apache/1.3.0 (UNIX)</SAMP> </DD> @@ -270,7 +270,7 @@ disabled on a virtualhost-by-virtualhost basis. </P> <P> -By default, this information is <EM>not</EM> included in the server +By default, this information <EM>is</EM> included in the server identity string. </P> <HR> 1.335 +2 -2 apache-1.3/src/main/http_main.c Index: http_main.c =================================================================== RCS file: /export/home/cvs/apache-1.3/src/main/http_main.c,v retrieving revision 1.334 retrieving revision 1.335 diff -u -r1.334 -r1.335 --- http_main.c 1998/05/08 11:35:41 1.334 +++ http_main.c 1998/05/08 12:09:47 1.335 @@ -343,7 +343,7 @@ static char *server_version = NULL; static int version_locked = 0; -int ap_note_platform = 0; /* Global, alas, so http_core can talk to us */ +int ap_note_platform = 1; /* Global, alas, so http_core can talk to us */ /* * This routine is called when the pconf pool is vacuumed. It resets the @@ -353,7 +353,7 @@ static void reset_version() { version_locked = 0; - ap_note_platform = 0; + ap_note_platform = 1; server_version = NULL; }