aboutsummaryrefslogtreecommitdiff
path: root/www/webalizer/files/patch-ad
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2001-04-18 21:37:32 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2001-04-18 21:37:32 +0000
commit01a9f79f0a3692d8148990805beabc8593d3596d (patch)
tree99d1ef5788fc9e55b6948a7d4951ac4a315f63bf /www/webalizer/files/patch-ad
parent8c307777eaf81af4195ae428b3ebbeba734fc5af (diff)
Notes
Diffstat (limited to 'www/webalizer/files/patch-ad')
-rw-r--r--www/webalizer/files/patch-ad33
1 files changed, 0 insertions, 33 deletions
diff --git a/www/webalizer/files/patch-ad b/www/webalizer/files/patch-ad
deleted file mode 100644
index 4ef6e9feebda..000000000000
--- a/www/webalizer/files/patch-ad
+++ /dev/null
@@ -1,33 +0,0 @@
---- output.c.orig Fri Sep 29 07:51:42 2000
-+++ output.c Sat Oct 14 17:18:55 2000
-@@ -1450,10 +1450,17 @@
- rptr=*pointer++;
- if (rptr->flag == OBJ_REG)
- {
-- fprintf(out_fp,"%-8lu %6.02f%% %s\n",
-- rptr->count,
-- (t_hit==0)?0:((float)rptr->count/t_hit)*100.0,
-- rptr->string);
-+ if (strstr(rptr->string,"://")!=NULL)
-+ fprintf(out_fp,"%-8lu %6.02f%% <A HREF=\"%s\">%s</A>\n",
-+ rptr->count,
-+ (t_hit==0)?0:((float)rptr->count/t_hit)*100.0,
-+ rptr->string,
-+ rptr->string);
-+ else
-+ fprintf(out_fp,"%-8lu %6.02f%% %s\n",
-+ rptr->count,
-+ (t_hit==0)?0:((float)rptr->count/t_hit)*100.0,
-+ rptr->string);
- r_reg--;
- }
- }
-@@ -1932,7 +1939,7 @@
- {
- domain = hptr->string+strlen(hptr->string)-1;
- while ( (*domain!='.')&&(domain!=hptr->string)) domain--;
-- if ((domain==hptr->string)||(isdigit((int)*++domain)))
-+ if ((domain==hptr->string)||(isdigit((unsigned char)*++domain)))
- {
- ctry[0].count+=hptr->count;
- ctry[0].files+=hptr->files;