summaryrefslogtreecommitdiff
path: root/lib/libfetch/http.c
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>1998-12-18 14:32:48 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>1998-12-18 14:32:48 +0000
commitd941fd2df927ee31e09262d6caf92ee91fac9250 (patch)
tree69f55379d29377a3f0110b5d62e53657a3938d24 /lib/libfetch/http.c
parentd63c42d19f180579211ad4e88517b81c0e5aca6a (diff)
Notes
Diffstat (limited to 'lib/libfetch/http.c')
-rw-r--r--lib/libfetch/http.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libfetch/http.c b/lib/libfetch/http.c
index f5a065eab95c..5c49ec540f45 100644
--- a/lib/libfetch/http.c
+++ b/lib/libfetch/http.c
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: http.c,v 1.8 1998/12/16 10:24:55 des Exp $
+ * $Id: http.c,v 1.9 1998/12/16 11:44:31 des Exp $
*/
/*
@@ -328,12 +328,12 @@ fetchGetHTTP(struct url *URL, char *flags)
host[len] = 0;
/* connect */
- sd = fetchConnect(host, port, verbose);
+ sd = _fetch_connect(host, port, verbose);
}
/* if no proxy is configured or could be contacted, try direct */
if (sd == -1) {
- if ((sd = fetchConnect(URL->host, URL->port, verbose)) == -1)
+ if ((sd = _fetch_connect(URL->host, URL->port, verbose)) == -1)
goto ouch;
}