On Jul 29, 2006, at 7:43 AM, [EMAIL PROTECTED] wrote:
Author: jfclere
Date: Sat Jul 29 04:43:25 2006
New Revision: 426781
Modified: httpd/httpd/branches/httpd-proxy-scoreboard/support/
proxymonitor.c
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/httpd-proxy-
scoreboard/support/proxymonitor.c?
rev=426781&r1=426780&r2=426781&view=diff
======================================================================
========
--- httpd/httpd/branches/httpd-proxy-scoreboard/support/
proxymonitor.c (original)
+++ httpd/httpd/branches/httpd-proxy-scoreboard/support/
proxymonitor.c Sat Jul 29 04:43:25 2006
@@ -101,6 +101,10 @@
}
return fname;
}
+char * ap_strrchr(char *s, int c)
+{
+ return strrchr(s,c);
+}
/*
* called on SIGINT or SIGTERM
Why? This is already defined in httpd.h, iirc