rse 98/03/12 05:52:06
Modified: src/helpers UpdateHide
src/include hide.h
Log:
Fix UpdateHide: the log_error matches aplog_error in our
exclusion list because we have forgotten to bind the regex
to its boundaries.
Revision Changes Path
1.7 +1 -1 apache-1.3/src/helpers/UpdateHide
Index: UpdateHide
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/helpers/UpdateHide,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- UpdateHide 1998/03/04 12:48:12 1.6
+++ UpdateHide 1998/03/12 13:52:05 1.7
@@ -141,7 +141,7 @@
# skip any compiler- or system-private symbols
next if ($name !~ m|^[a-zA-Z]+|);
# skip any symbols in our exclusion list
- next if (grep(/$name/, @excluded));
+ next if (grep(/^$name$/, @excluded));
# insert the symbol into our lists
$SB{$name}++ if $type eq 'B';
1.7 +1 -0 apache-1.3/src/include/hide.h
Index: hide.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/hide.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- hide.h 1998/03/12 10:35:05 1.6
+++ hide.h 1998/03/12 13:52:06 1.7
@@ -347,6 +347,7 @@
#define limit_section AP_limit_section
#define location_walk AP_location_walk
#define log_assert AP_log_assert
+#define log_error AP_log_error
#define log_pid AP_log_pid
#define log_printf AP_log_printf
#define log_reason AP_log_reason