summaryrefslogtreecommitdiff
path: root/www/apache13-modssl/files/patch-ae
diff options
context:
space:
mode:
Diffstat (limited to 'www/apache13-modssl/files/patch-ae')
-rw-r--r--www/apache13-modssl/files/patch-ae79
1 files changed, 29 insertions, 50 deletions
diff --git a/www/apache13-modssl/files/patch-ae b/www/apache13-modssl/files/patch-ae
index 039d6320f415..74b2d8308bd9 100644
--- a/www/apache13-modssl/files/patch-ae
+++ b/www/apache13-modssl/files/patch-ae
@@ -1,50 +1,29 @@
-*** src/support/log_server_status.orig Tue Mar 31 16:53:50 1998
---- src/support/log_server_status Tue Apr 21 17:18:10 1998
-***************
-*** 67,76 ****
- #
- require 'sys/socket.ph';
-
-! $wherelog = "/var/log/graph/"; # Logs will be like "/var/log/graph/960312"
- $server = "localhost"; # Name of server, could be "www.foo.com"
- $port = "80"; # Port on server
-! $request = "/status/?auto"; # Request to send
-
- sub tcp_connect
- {
---- 67,76 ----
- #
- require 'sys/socket.ph';
-
-! $wherelog = "/var/log/httpd-status-"; # Logs will be like "/var/log/graph/960312"
- $server = "localhost"; # Name of server, could be "www.foo.com"
- $port = "80"; # Port on server
-! $request = "/server-status/?auto"; # Request to send
-
- sub tcp_connect
- {
-***************
-*** 93,103 ****
- ### Main
-
- {
-! $date=`date +%y%m%d:%H%M%S`;
- chop($date);
- ($day,$time)=split(/:/,$date);
- $res=&tcp_connect($server,$port);
-! open(OUT,">>$wherelog$day");
- if ($res) {
- print OUT "$time:-1:-1:-1:-1:$res\n";
- exit 1;
---- 93,103 ----
- ### Main
-
- {
-! $date=`LC_TIME=C date +%y%m%d:%H%M%S`;
- chop($date);
- ($day,$time)=split(/:/,$date);
- $res=&tcp_connect($server,$port);
-! open(OUT,">>$wherelog$day.log");
- if ($res) {
- print OUT "$time:-1:-1:-1:-1:$res\n";
- exit 1;
+--- src/support/log_server_status.orig Fri Jun 4 17:54:19 1999
++++ src/support/log_server_status Thu Aug 19 16:30:48 1999
+@@ -67,7 +67,7 @@
+ #
+ require 'sys/socket.ph';
+
+-$wherelog = "/var/log/graph/"; # Logs will be like "/var/log/graph/19960312"
++$wherelog = "/var/log/httpd-status-";
+ $server = "localhost"; # Name of server, could be "www.foo.com"
+ $port = "80"; # Port on server
+ $request = "/status/?auto"; # Request to send
+@@ -93,14 +93,14 @@
+ ### Main
+
+ {
+- $year=`date +%y`;
++ $year=`LC_TIME=C date +%y`;
+ chomp($year);
+ $year += ($year < 70) ? 2000 : 1900;
+- $date = $year . `date +%m%d:%H%M%S`;
++ $date = $year . `LC_TIME=C date +%m%d:%H%M%S`;
+ chomp($date);
+ ($day,$time)=split(/:/,$date);
+ $res=&tcp_connect($server,$port);
+- open(OUT,">>$wherelog$day");
++ open(OUT,">>$wherelog$day.log");
+ if ($res) {
+ print OUT "$time:-1:-1:-1:-1:$res\n";
+ exit 1;