diff options
author | garga <garga@FreeBSD.org> | 2007-02-26 19:32:00 +0800 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2007-02-26 19:32:00 +0800 |
commit | 075f85faa8c2ef1041b7a20ca2a381cedb5443ca (patch) | |
tree | 6c40cb154d8f45daf71282f3474562197475a828 /www/sarg/files | |
parent | 19f0cff88a79eb95c27807b2393e09bd55be4efe (diff) | |
download | freebsd-ports-gnome-075f85faa8c2ef1041b7a20ca2a381cedb5443ca.tar.gz freebsd-ports-gnome-075f85faa8c2ef1041b7a20ca2a381cedb5443ca.tar.zst freebsd-ports-gnome-075f85faa8c2ef1041b7a20ca2a381cedb5443ca.zip |
- Fix Segmentation Fault problem
- Bump PORTREVISION
Obtained from: Orso maillist
Diffstat (limited to 'www/sarg/files')
-rw-r--r-- | www/sarg/files/patch-log.c | 11 |
1 files changed, 11 insertions, 0 deletions
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); |