diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2000-09-24 10:36:14 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2000-09-24 10:36:14 +0000 |
commit | 29defb3b1d58f09929dc49468da5424538379d04 (patch) | |
tree | f75ae7b9968ae7809c45dbc24c3edc8de32e0d62 /www/webalizer | |
parent | 76043c1ba514a647241140f9f4ac1b0dede0b7d3 (diff) | |
download | ports-29defb3b1d58f09929dc49468da5424538379d04.tar.gz ports-29defb3b1d58f09929dc49468da5424538379d04.zip |
Notes
Diffstat (limited to 'www/webalizer')
-rw-r--r-- | www/webalizer/files/patch-ad | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/www/webalizer/files/patch-ad b/www/webalizer/files/patch-ad new file mode 100644 index 000000000000..dd9de33a0a02 --- /dev/null +++ b/www/webalizer/files/patch-ad @@ -0,0 +1,24 @@ +--- output.c.orig Sun Mar 19 02:37:06 2000 ++++ output.c Sun Sep 24 14:28:15 2000 +@@ -1447,10 +1447,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--; + } + } |