aboutsummaryrefslogtreecommitdiff
path: root/www/bk2site/files/patch-bk2site.C
diff options
context:
space:
mode:
Diffstat (limited to 'www/bk2site/files/patch-bk2site.C')
-rw-r--r--www/bk2site/files/patch-bk2site.C16
1 files changed, 0 insertions, 16 deletions
diff --git a/www/bk2site/files/patch-bk2site.C b/www/bk2site/files/patch-bk2site.C
deleted file mode 100644
index 00bf14e0de9c..000000000000
--- a/www/bk2site/files/patch-bk2site.C
+++ /dev/null
@@ -1,16 +0,0 @@
---- bk2site.C.orig Fri Feb 18 21:54:52 2005
-+++ bk2site.C Fri Feb 18 21:57:13 2005
-@@ -448,10 +448,11 @@
- cout << "Reading " << varValues[URLLOGFILE] << endl;
- time_t curTime;
- time_t cutoffTime = time(0) - atoi(varValues[HITSTIMECUTOFF].c_str());
-- string currentURL = "";
-+ string currentURL = "", scurTime = "";
- while (!(istream.eof())){
-- istream >> curTime;
-+ istream >> scurTime;
- istream >> currentURL;
-+ curTime = atoi(scurTime.c_str());
- //if url starts with a number (its a time) or url is null
- // keep trying to read a time/url pair.
- while (((currentURL[0] >= '0' && currentURL[0] <= '9') || currentURL == "") && !istream.eof()){