diff options
author | Renato Botelho <garga@FreeBSD.org> | 2007-02-26 11:32:00 +0000 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2007-02-26 11:32:00 +0000 |
commit | 618b21cabd73dfef319e045f4ea3ca16f8cc556c (patch) | |
tree | 39f6c2ec0b9507bbb4c1eb0e73c4652d20f47b79 /www/sarg | |
parent | 88c8b624edd9ec4e4a9a67b8569c8965fb429073 (diff) |
- Fix Segmentation Fault problem
- Bump PORTREVISION
Obtained from: Orso maillist
Notes
Notes:
svn path=/head/; revision=185981
Diffstat (limited to 'www/sarg')
-rw-r--r-- | www/sarg/Makefile | 1 | ||||
-rw-r--r-- | www/sarg/files/patch-log.c | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/www/sarg/Makefile b/www/sarg/Makefile index ca00db2ba15b..8047815ad03e 100644 --- a/www/sarg/Makefile +++ b/www/sarg/Makefile @@ -7,6 +7,7 @@ PORTNAME= sarg PORTVERSION= 2.2.3.1 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= SF diff --git a/www/sarg/files/patch-log.c b/www/sarg/files/patch-log.c new file mode 100644 index 000000000000..4f2b853d3c20 --- /dev/null +++ b/www/sarg/files/patch-log.c @@ -0,0 +1,11 @@ +--- log.c 2007-01-02 17:11:26.000000000 -0200 ++++ new/log.c 2007-01-29 17:19:17.000000000 -0200 +@@ -1216,7 +1216,7 @@ + + if(download_flag && strstr(code,"DENIED") == 0) { + ndownload = 1; +- sprintf(bufz, "%s %s %s %s %s %s\n",dia,hora,user,ip,download_url); ++ sprintf(bufz, "%s %s %s %s %s\n",dia,hora,user,ip,download_url); + + #ifdef LEGACY_WRITE_DOWNLOAD + sprintf(tmp3,"%s/sarg/download.unsort",tmp); |