diff options
author | Ken Smith <kensmith@FreeBSD.org> | 2009-05-01 02:51:58 +0000 |
---|---|---|
committer | Ken Smith <kensmith@FreeBSD.org> | 2009-05-01 02:51:58 +0000 |
commit | b205d83df7763ca1f099bce5ac12a05862a626c4 (patch) | |
tree | f30d11bce592433d73cbb079c6db2d3428a52cf5 /lib/libfetch | |
parent | 54055718ff5134ddd61afc4c5f01440022040a06 (diff) |
Diffstat (limited to 'lib/libfetch')
-rw-r--r-- | lib/libfetch/Makefile | 2 | ||||
-rw-r--r-- | lib/libfetch/common.c | 2 | ||||
-rw-r--r-- | lib/libfetch/common.h | 2 | ||||
-rw-r--r-- | lib/libfetch/fetch.3 | 2 | ||||
-rw-r--r-- | lib/libfetch/fetch.c | 2 | ||||
-rw-r--r-- | lib/libfetch/fetch.h | 2 | ||||
-rw-r--r-- | lib/libfetch/file.c | 2 | ||||
-rw-r--r-- | lib/libfetch/ftp.c | 2 | ||||
-rw-r--r-- | lib/libfetch/ftp.errors | 2 | ||||
-rw-r--r-- | lib/libfetch/http.c | 2 | ||||
-rw-r--r-- | lib/libfetch/http.errors | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/lib/libfetch/Makefile b/lib/libfetch/Makefile index 219a69920205..125e88de92b9 100644 --- a/lib/libfetch/Makefile +++ b/lib/libfetch/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $FreeBSD: src/lib/libfetch/Makefile,v 1.49.2.1.4.1 2009/04/15 03:14:26 kensmith Exp $ .include <bsd.own.mk> diff --git a/lib/libfetch/common.c b/lib/libfetch/common.c index 155a2c879eba..d815e8a7459b 100644 --- a/lib/libfetch/common.c +++ b/lib/libfetch/common.c @@ -27,7 +27,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libfetch/common.c,v 1.50.10.3.4.1 2009/04/15 03:14:26 kensmith Exp $"); #include <sys/param.h> #include <sys/socket.h> diff --git a/lib/libfetch/common.h b/lib/libfetch/common.h index 05bee0360993..fff8aaa333e9 100644 --- a/lib/libfetch/common.h +++ b/lib/libfetch/common.h @@ -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. * - * $FreeBSD$ + * $FreeBSD: src/lib/libfetch/common.h,v 1.28.10.1.4.1 2009/04/15 03:14:26 kensmith Exp $ */ #ifndef _COMMON_H_INCLUDED diff --git a/lib/libfetch/fetch.3 b/lib/libfetch/fetch.3 index 9b312b0a1f1f..9c8925366f31 100644 --- a/lib/libfetch/fetch.3 +++ b/lib/libfetch/fetch.3 @@ -23,7 +23,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $FreeBSD: src/lib/libfetch/fetch.3,v 1.63.2.3.2.1 2009/04/15 03:14:26 kensmith Exp $ .\" .Dd December 14, 2008 .Dt FETCH 3 diff --git a/lib/libfetch/fetch.c b/lib/libfetch/fetch.c index 5044fe301bc6..05c1ddea42c6 100644 --- a/lib/libfetch/fetch.c +++ b/lib/libfetch/fetch.c @@ -27,7 +27,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libfetch/fetch.c,v 1.38.10.2.2.1 2009/04/15 03:14:26 kensmith Exp $"); #include <sys/param.h> #include <sys/errno.h> diff --git a/lib/libfetch/fetch.h b/lib/libfetch/fetch.h index e620a01c600d..fc1d35a2936e 100644 --- a/lib/libfetch/fetch.h +++ b/lib/libfetch/fetch.h @@ -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. * - * $FreeBSD$ + * $FreeBSD: src/lib/libfetch/fetch.h,v 1.26.10.1.2.1 2009/04/15 03:14:26 kensmith Exp $ */ #ifndef _FETCH_H_INCLUDED diff --git a/lib/libfetch/file.c b/lib/libfetch/file.c index a1492ba05637..af4d11659c2a 100644 --- a/lib/libfetch/file.c +++ b/lib/libfetch/file.c @@ -27,7 +27,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libfetch/file.c,v 1.17.10.1.4.1 2009/04/15 03:14:26 kensmith Exp $"); #include <sys/param.h> #include <sys/stat.h> diff --git a/lib/libfetch/ftp.c b/lib/libfetch/ftp.c index d0d597f0f9e0..4ff60130ce5d 100644 --- a/lib/libfetch/ftp.c +++ b/lib/libfetch/ftp.c @@ -27,7 +27,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libfetch/ftp.c,v 1.96.2.3.4.1 2009/04/15 03:14:26 kensmith Exp $"); /* * Portions of this code were taken from or based on ftpio.c: diff --git a/lib/libfetch/ftp.errors b/lib/libfetch/ftp.errors index 9a4a11ec4b86..5a527536ee64 100644 --- a/lib/libfetch/ftp.errors +++ b/lib/libfetch/ftp.errors @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $FreeBSD: src/lib/libfetch/ftp.errors,v 1.6.34.1 2009/04/15 03:14:26 kensmith Exp $ # # This list is taken from RFC 959. # It probably needs a going over. diff --git a/lib/libfetch/http.c b/lib/libfetch/http.c index dd983493e392..6df5804ccf53 100644 --- a/lib/libfetch/http.c +++ b/lib/libfetch/http.c @@ -27,7 +27,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libfetch/http.c,v 1.78.2.4.2.1 2009/04/15 03:14:26 kensmith Exp $"); /* * The following copyright applies to the base64 code: diff --git a/lib/libfetch/http.errors b/lib/libfetch/http.errors index 1f38574d463a..70ade50f1b51 100644 --- a/lib/libfetch/http.errors +++ b/lib/libfetch/http.errors @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $FreeBSD: src/lib/libfetch/http.errors,v 1.5.34.1 2009/04/15 03:14:26 kensmith Exp $ # # This list is taken from RFC 2068. # |