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-ae29
1 files changed, 0 insertions, 29 deletions
diff --git a/www/apache13-modssl/files/patch-ae b/www/apache13-modssl/files/patch-ae
deleted file mode 100644
index 4ee89df5c8c8..000000000000
--- a/www/apache13-modssl/files/patch-ae
+++ /dev/null
@@ -1,29 +0,0 @@
---- src/support/log_server_status.orig Tue Jan 16 02:06:38 2001
-+++ src/support/log_server_status Mon Oct 22 20:44:59 2001
-@@ -70,7 +70,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
-@@ -96,14 +96,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;