View | Details | Raw Unified | Return to bug 206756 | Differences between
and this patch

Collapse All | Expand All

(-)ftp/curl/Makefile (-2 / +1 lines)
Lines 2-9 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	curl
4
PORTNAME=	curl
5
PORTVERSION=	7.46.0
5
PORTVERSION=	7.47.0
6
PORTREVISION=	2
7
CATEGORIES=	ftp www
6
CATEGORIES=	ftp www
8
MASTER_SITES=	http://curl.haxx.se/download/ \
7
MASTER_SITES=	http://curl.haxx.se/download/ \
9
		LOCAL/sunpoet
8
		LOCAL/sunpoet
(-)ftp/curl/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (curl-7.46.0.tar.lzma) = fe854a0dedf0a89da72aa1725d8ff66285b613d366a88f14681dacd824024087
1
SHA256 (curl-7.47.0.tar.lzma) = f7789a806fef4e24ec3d4b70ca86ff145243bf19d03ab0eb5c64f18f1b2748d8
2
SIZE (curl-7.46.0.tar.lzma) = 2864645
2
SIZE (curl-7.47.0.tar.lzma) = 2878783
(-)ftp/curl/files/patch-docs_examples_getredirect.c (+11 lines)
Line 0 Link Here
1
--- docs/examples/getredirect.c.orig	2016-01-30 11:01:12 UTC
2
+++ docs/examples/getredirect.c
3
@@ -48,7 +48,7 @@ int main(void)
4
     else {
5
       res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response_code);
6
       if((res == CURLE_OK) &&
7
-         ((code / 100) != 3)) {
8
+         ((response_code / 100) != 3)) {
9
         /* a redirect implies a 3xx response code */
10
         fprintf(stderr, "Not a redirect.\n");
11
       }

Return to bug 206756