diff options
-rw-r--r-- | www/curl/Makefile | 5 | ||||
-rw-r--r-- | www/curl/PLIST | 3 | ||||
-rw-r--r-- | www/curl/distinfo | 9 | ||||
-rw-r--r-- | www/curl/patches/patch-aa | 34 |
4 files changed, 8 insertions, 43 deletions
diff --git a/www/curl/Makefile b/www/curl/Makefile index 37d0ee9e2c1..c9838b7ff86 100644 --- a/www/curl/Makefile +++ b/www/curl/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.49 2005/02/25 00:47:30 salo Exp $ +# $NetBSD: Makefile,v 1.50 2005/03/05 14:23:00 wiz Exp $ -DISTNAME= curl-7.13.0 -PKGREVISION= 1 +DISTNAME= curl-7.13.1 CATEGORIES= www MASTER_SITES= http://curl.haxx.se/download/ \ ftp://ftp.sunet.se/pub/www/utilities/curl/ \ diff --git a/www/curl/PLIST b/www/curl/PLIST index 26d468f5f42..815430b64af 100644 --- a/www/curl/PLIST +++ b/www/curl/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.14 2005/01/03 11:00:51 wiz Exp $ +@comment $NetBSD: PLIST,v 1.15 2005/03/05 14:23:00 wiz Exp $ bin/curl bin/curl-config include/curl/curl.h @@ -72,6 +72,7 @@ share/examples/curl/ftpgetresp.c share/examples/curl/ftpupload.c share/examples/curl/getinfo.c share/examples/curl/getinmemory.c +share/examples/curl/htmltidy.c share/examples/curl/http-post.c share/examples/curl/httpput.c share/examples/curl/https.c diff --git a/www/curl/distinfo b/www/curl/distinfo index ad696b5f39c..9e7e71027fd 100644 --- a/www/curl/distinfo +++ b/www/curl/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.33 2005/02/25 00:47:30 salo Exp $ +$NetBSD: distinfo,v 1.34 2005/03/05 14:23:00 wiz Exp $ -SHA1 (curl-7.13.0.tar.bz2) = 63530e49c7c55b0cb47372d87b4d2eff40d28e43 -RMD160 (curl-7.13.0.tar.bz2) = e543ebdae0f703d34f287ff7e9a8ee62ddf40d7b -Size (curl-7.13.0.tar.bz2) = 1853790 bytes -SHA1 (patch-aa) = 77f05820c243eb58c4091f89e6aaf44886d6d497 +SHA1 (curl-7.13.1.tar.bz2) = 0e87860d83377df0fb38c7b034adff5e0ae9e3f7 +RMD160 (curl-7.13.1.tar.bz2) = 280f267bfce4876bf5c54db67e8826113271d573 +Size (curl-7.13.1.tar.bz2) = 1860688 bytes diff --git a/www/curl/patches/patch-aa b/www/curl/patches/patch-aa deleted file mode 100644 index dcb483915fb..00000000000 --- a/www/curl/patches/patch-aa +++ /dev/null @@ -1,34 +0,0 @@ -$NetBSD: patch-aa,v 1.8 2005/02/25 00:47:30 salo Exp $ - ---- lib/http_ntlm.c.orig 2004-12-08 00:09:41.000000000 +0100 -+++ lib/http_ntlm.c 2005-02-25 01:09:30.000000000 +0100 -@@ -103,7 +103,6 @@ - header++; - - if(checkprefix("NTLM", header)) { -- unsigned char buffer[256]; - header += strlen("NTLM"); - - while(*header && isspace((int)*header)) -@@ -123,8 +122,12 @@ - (40) Target Information (optional) security buffer(*) - 32 (48) start of data block - */ -+ size_t size; -+ unsigned char *buffer = (unsigned char *)malloc(strlen(header)); -+ if (buffer == NULL) -+ return CURLNTLM_BAD; - -- size_t size = Curl_base64_decode(header, (char *)buffer); -+ size = Curl_base64_decode(header, (char *)buffer); - - ntlm->state = NTLMSTATE_TYPE2; /* we got a type-2 */ - -@@ -134,6 +137,7 @@ - - /* at index decimal 20, there's a 32bit NTLM flag field */ - -+ free(buffer); - } - else { - if(ntlm->state >= NTLMSTATE_TYPE1) |