Module Name: src
Committed By: christos
Date: Sat Jun 25 17:13:35 UTC 2011
Modified Files:
src/external/bsd/fetch/dist/libfetch: ftp.c
Log Message:
It is a lot nicer to getenv() what you need once and makes the code a lot
more readable.
To generate a diff of this commit:
cvs rdiff -u -r1.1.1.11 -r1.2 src/external/bsd/fetch/dist/libfetch/ftp.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/bsd/fetch/dist/libfetch/ftp.c
diff -u src/external/bsd/fetch/dist/libfetch/ftp.c:1.1.1.11 src/external/bsd/fetch/dist/libfetch/ftp.c:1.2
--- src/external/bsd/fetch/dist/libfetch/ftp.c:1.1.1.11 Wed Mar 24 16:51:44 2010
+++ src/external/bsd/fetch/dist/libfetch/ftp.c Sat Jun 25 13:13:34 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: ftp.c,v 1.1.1.11 2010/03/24 20:51:44 joerg Exp $ */
+/* $NetBSD: ftp.c,v 1.2 2011/06/25 17:13:34 christos Exp $ */
/*-
* Copyright (c) 1998-2004 Dag-Erling Co�dan Sm�rgrav
* Copyright (c) 2008, 2009, 2010 Joerg Sonnenberger <[email protected]>
@@ -1097,17 +1097,22 @@
ftp_get_proxy(struct url * url, const char *flags)
{
struct url *purl;
- char *p;
+ char *p, *fp, *FP, *hp, *HP;
if (flags != NULL && strchr(flags, 'd') != NULL)
- return (NULL);
+ return NULL;
if (fetch_no_proxy_match(url->host))
- return (NULL);
- if (((p = getenv("FTP_PROXY")) || (p = getenv("ftp_proxy")) ||
- (p = getenv("HTTP_PROXY")) || (p = getenv("http_proxy"))) &&
+ return NULL;
+
+ FP = getenv("FTP_PROXY");
+ fp = getenv("ftp_proxy");
+ HP = getenv("HTTP_PROXY");
+ hp = getenv("http_proxy");
+
+ if (((p = FP) || (p = fp) || (p = HP) || (p = hp))) &&
*p && (purl = fetchParseURL(p)) != NULL) {
if (!*purl->scheme) {
- if (getenv("FTP_PROXY") || getenv("ftp_proxy"))
+ if (fp || FP)
strcpy(purl->scheme, SCHEME_FTP);
else
strcpy(purl->scheme, SCHEME_HTTP);
@@ -1116,10 +1121,10 @@
purl->port = fetch_default_proxy_port(purl->scheme);
if (strcasecmp(purl->scheme, SCHEME_FTP) == 0 ||
strcasecmp(purl->scheme, SCHEME_HTTP) == 0)
- return (purl);
+ return purl;
fetchFreeURL(purl);
}
- return (NULL);
+ return NULL;
}
/*