fielding 99/02/09 09:17:07
Modified: . STATUS src ApacheCore.def CHANGES Log: Add global symbols missing from ApacheCore.def. Submitted by: Carl Olsen <[EMAIL PROTECTED]> Reviewed by: Roy Fielding Revision Changes Path 1.615 +1 -5 apache-1.3/STATUS Index: STATUS =================================================================== RCS file: /home/cvs/apache-1.3/STATUS,v retrieving revision 1.614 retrieving revision 1.615 diff -u -r1.614 -r1.615 --- STATUS 1999/02/06 14:14:35 1.614 +++ STATUS 1999/02/09 17:17:01 1.615 @@ -1,5 +1,5 @@ 1.3 STATUS: - Last modified at [$Date: 1999/02/06 14:14:35 $] + Last modified at [$Date: 1999/02/09 17:17:01 $] Release: @@ -85,10 +85,6 @@ * Ralf's [PATCH] Shared Memory Pools Message-ID: <[EMAIL PROTECTED]> Status: Not sure if this is intended for 1.3.x or just feedback - - * Carl Olsen's [PATCH] Added function exports to ApacheCore.def - Message-ID: <[EMAIL PROTECTED]> - Status: Roy +1 [update before commit] * Fred's [PATCH: srm.conf and access.conf refer to httpd.conf Message-ID: <[EMAIL PROTECTED]> 1.12 +14 -0 apache-1.3/src/ApacheCore.def Index: ApacheCore.def =================================================================== RCS file: /home/cvs/apache-1.3/src/ApacheCore.def,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- ApacheCore.def 1999/02/09 16:57:19 1.11 +++ ApacheCore.def 1999/02/09 17:17:04 1.12 @@ -329,4 +329,18 @@ ap_validate_password @322 ap_size_list_item @323 ap_get_list_item @324 + ap_scoreboard_fname @325 + ap_pid_fname @326 + ap_excess_requests_per_child @327 + ap_threads_per_child @328 + ap_max_requests_per_child @329 + ap_daemons_to_start @330 + ap_daemons_min_free @331 + ap_daemons_max_free @332 + ap_daemons_limit @333 + ap_user_name @334 + ap_user_id @335 + ap_group_id @336 + ap_standalone @337 + ap_server_confname @338 1.1243 +2 -0 apache-1.3/src/CHANGES Index: CHANGES =================================================================== RCS file: /home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.1242 retrieving revision 1.1243 diff -u -r1.1242 -r1.1243 --- CHANGES 1999/02/09 16:57:20 1.1242 +++ CHANGES 1999/02/09 17:17:04 1.1243 @@ -1,5 +1,7 @@ Changes with Apache 1.3.5 + *) Win32: Add global symbols missing from ApacheCore.def. [Carl Olsen] + *) Entity tag comparisons for If-Match and If-None-Match were not being performed correctly -- weak tags might cause false positives. Also, strong comparison wasn't properly enforced in all cases.