From owner-cvs-all Mon Aug 17 02:30:28 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA13026 for cvs-all-outgoing; Mon, 17 Aug 1998 02:30:28 -0700 (PDT) (envelope-from owner-cvs-all) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA13021; Mon, 17 Aug 1998 02:30:25 -0700 (PDT) (envelope-from des@FreeBSD.org) From: "Dag-Erling C. Sm\xf8rgrav" Received: (from des@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA25406; Mon, 17 Aug 1998 02:30:20 -0700 (PDT) Date: Mon, 17 Aug 1998 02:30:20 -0700 (PDT) Message-Id: <199808170930.CAA25406@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/lib/libfetch Makefile README fetch.c fetch.h ftp.c http.c Sender: owner-cvs-all@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk des 1998/08/17 02:30:20 PDT Modified files: lib/libfetch Makefile README fetch.c fetch.h ftp.c http.c Log: Commit a bunch of patches that have been accumulating: - Fix the README to reflect the new status of the ftp code. - Change tons of 'if (xxx < 0)' to 'if (xxx == -1)' - Add two new interface functions - Fix the Makefile so it actually works (yay!) Now the manpage is lagging even further behind... :( Next on the todo list is to clean up the http code. Revision Changes Path 1.4 +7 -5 src/lib/libfetch/Makefile 1.2 +0 -2 src/lib/libfetch/README 1.4 +37 -24 src/lib/libfetch/fetch.c 1.4 +3 -1 src/lib/libfetch/fetch.h 1.5 +12 -13 src/lib/libfetch/ftp.c 1.5 +3 -3 src/lib/libfetch/http.c