summaryrefslogtreecommitdiff
path: root/www/gatling/files/patch-dl.c
diff options
context:
space:
mode:
authorOKAZAKI Tetsurou <okazaki@FreeBSD.org>2007-08-28 10:55:06 +0000
committerOKAZAKI Tetsurou <okazaki@FreeBSD.org>2007-08-28 10:55:06 +0000
commit22219ed80793df5c42bd64a9e7f5045757486f0c (patch)
tree1147ddf687807cc0a65a12d237274e6ede114a7d /www/gatling/files/patch-dl.c
parent- Integrate patches from quagga CVS. (diff)
Update to 0.9
Brush up Makefile: - Use PORTEXAMPLES (and honor NOPORTEXAMPLES) - Remove obsolete constructs and simplify some expressions - use LOCALBASE instead of PREFIX where appropriate PR: 115874 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=198448
Diffstat (limited to 'www/gatling/files/patch-dl.c')
-rw-r--r--www/gatling/files/patch-dl.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/www/gatling/files/patch-dl.c b/www/gatling/files/patch-dl.c
deleted file mode 100644
index 857525214359..000000000000
--- a/www/gatling/files/patch-dl.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- dl.c.orig Sat Jan 13 15:30:02 2007
-+++ dl.c Sat Jan 13 15:36:34 2007
-@@ -188,7 +188,7 @@ static inline int issafe(unsigned char c
- return (c!='"' && c>=' ' && c!='+');
- }
-
--unsigned long fmt_urlencoded(char* dest,const char* src,unsigned long len) {
-+size_t fmt_urlencoded(char* dest,const char* src,size_t len) {
- register const unsigned char* s=(const unsigned char*) src;
- unsigned long written=0,i;
- for (i=0; i<len; ++i) {