summaryrefslogtreecommitdiff
path: root/secure/lib
diff options
context:
space:
mode:
authorKen Smith <kensmith@FreeBSD.org>2008-11-26 01:09:48 +0000
committerKen Smith <kensmith@FreeBSD.org>2008-11-26 01:09:48 +0000
commita93332491e10c1a23a9fd2f11ccbdba33d72d850 (patch)
tree1467effda708ab3ab6426f7cb6bd2d8d4fa29ab8 /secure/lib
parentd2d8199ea25041ce5507c36316475bb4331b66ed (diff)
Diffstat (limited to 'secure/lib')
-rw-r--r--secure/lib/Makefile2
-rw-r--r--secure/lib/Makefile.inc2
-rw-r--r--secure/lib/libcrypt/blowfish.c2
-rw-r--r--secure/lib/libcrypt/blowfish.h2
-rw-r--r--secure/lib/libcrypt/crypt-blowfish.c2
-rw-r--r--secure/lib/libcrypt/crypt-des.c2
-rw-r--r--secure/lib/libcrypto/Makefile2
-rw-r--r--secure/lib/libcrypto/Makefile.asm2
-rw-r--r--secure/lib/libcrypto/Makefile.inc2
-rw-r--r--secure/lib/libcrypto/Makefile.man2
-rw-r--r--secure/lib/libcrypto/i386/bf-586.s2
-rw-r--r--secure/lib/libcrypto/i386/bf-686.s2
-rw-r--r--secure/lib/libcrypto/i386/bn-586.s2
-rw-r--r--secure/lib/libcrypto/i386/cast-586.s2
-rw-r--r--secure/lib/libcrypto/i386/co-586.s2
-rw-r--r--secure/lib/libcrypto/i386/crypt586.s2
-rw-r--r--secure/lib/libcrypto/i386/des-586.s2
-rw-r--r--secure/lib/libcrypto/i386/md5-586.s2
-rw-r--r--secure/lib/libcrypto/i386/rc4-586.s2
-rw-r--r--secure/lib/libcrypto/i386/rc5-586.s2
-rw-r--r--secure/lib/libcrypto/i386/rmd-586.s2
-rw-r--r--secure/lib/libcrypto/i386/sha1-586.s2
-rw-r--r--secure/lib/libcrypto/opensslconf-alpha.h2
-rw-r--r--secure/lib/libcrypto/opensslconf-amd64.h2
-rw-r--r--secure/lib/libcrypto/opensslconf-arm.h2
-rw-r--r--secure/lib/libcrypto/opensslconf-i386.h2
-rw-r--r--secure/lib/libcrypto/opensslconf-ia64.h2
-rw-r--r--secure/lib/libcrypto/opensslconf-powerpc.h2
-rw-r--r--secure/lib/libcrypto/opensslconf-sparc64.h2
-rw-r--r--secure/lib/libssh/Makefile2
-rw-r--r--secure/lib/libssl/Makefile2
-rw-r--r--secure/lib/libssl/Makefile.man2
32 files changed, 32 insertions, 32 deletions
diff --git a/secure/lib/Makefile b/secure/lib/Makefile
index 049fd398f31c9..0202de35a0dbc 100644
--- a/secure/lib/Makefile
+++ b/secure/lib/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/Makefile,v 1.33.22.1 2008/10/02 02:57:24 kensmith Exp $
SUBDIR=
.if !defined(NO_OPENSSL)
diff --git a/secure/lib/Makefile.inc b/secure/lib/Makefile.inc
index 002a3f70ef335..6f28c0e585162 100644
--- a/secure/lib/Makefile.inc
+++ b/secure/lib/Makefile.inc
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/Makefile.inc,v 1.9.28.1 2008/10/02 02:57:24 kensmith Exp $
.include "../Makefile.inc"
.if exists(${.CURDIR}/../../../lib/Makefile.inc)
diff --git a/secure/lib/libcrypt/blowfish.c b/secure/lib/libcrypt/blowfish.c
index 5b33f025fdfdd..de6d711b554e9 100644
--- a/secure/lib/libcrypt/blowfish.c
+++ b/secure/lib/libcrypt/blowfish.c
@@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/secure/lib/libcrypt/blowfish.c,v 1.4.26.1 2008/10/02 02:57:24 kensmith Exp $");
/*
* This code is derived from section 14.3 and the given source
diff --git a/secure/lib/libcrypt/blowfish.h b/secure/lib/libcrypt/blowfish.h
index 2ea64749b9f1c..42ff041de7e8a 100644
--- a/secure/lib/libcrypt/blowfish.h
+++ b/secure/lib/libcrypt/blowfish.h
@@ -29,7 +29,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/secure/lib/libcrypt/blowfish.h,v 1.3.26.1 2008/10/02 02:57:24 kensmith Exp $
*/
/*
diff --git a/secure/lib/libcrypt/crypt-blowfish.c b/secure/lib/libcrypt/crypt-blowfish.c
index 649d07cb30fdb..79af43079b1c3 100644
--- a/secure/lib/libcrypt/crypt-blowfish.c
+++ b/secure/lib/libcrypt/crypt-blowfish.c
@@ -29,7 +29,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/secure/lib/libcrypt/crypt-blowfish.c,v 1.4.26.1 2008/10/02 02:57:24 kensmith Exp $");
/* This password hashing algorithm was designed by David Mazieres
* <dm@lcs.mit.edu> and works as follows:
diff --git a/secure/lib/libcrypt/crypt-des.c b/secure/lib/libcrypt/crypt-des.c
index 9adff936f3adf..071a2df6e5654 100644
--- a/secure/lib/libcrypt/crypt-des.c
+++ b/secure/lib/libcrypt/crypt-des.c
@@ -57,7 +57,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/secure/lib/libcrypt/crypt-des.c,v 1.16.30.1 2008/10/02 02:57:24 kensmith Exp $");
#include <sys/types.h>
#include <sys/param.h>
diff --git a/secure/lib/libcrypto/Makefile b/secure/lib/libcrypto/Makefile
index 5c22f97b04409..850080b317f13 100644
--- a/secure/lib/libcrypto/Makefile
+++ b/secure/lib/libcrypto/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/libcrypto/Makefile,v 1.73.2.1.10.1 2008/10/02 02:57:24 kensmith Exp $
LIB= crypto
SHLIBDIR?= /lib
diff --git a/secure/lib/libcrypto/Makefile.asm b/secure/lib/libcrypto/Makefile.asm
index 50584ee03ed6e..1e1d4f9326b5b 100644
--- a/secure/lib/libcrypto/Makefile.asm
+++ b/secure/lib/libcrypto/Makefile.asm
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/libcrypto/Makefile.asm,v 1.5.16.1 2008/10/02 02:57:24 kensmith Exp $
# Use this to help generate the asm *.s files after an import. It is not
# perfect by any means, but does what is needed.
# Do a 'make -f Makefile.asm all' and it will generate *.s. Move them
diff --git a/secure/lib/libcrypto/Makefile.inc b/secure/lib/libcrypto/Makefile.inc
index f4bde45372261..0c0be2692d8b9 100644
--- a/secure/lib/libcrypto/Makefile.inc
+++ b/secure/lib/libcrypto/Makefile.inc
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/libcrypto/Makefile.inc,v 1.40.2.1.6.1 2008/10/02 02:57:24 kensmith Exp $
LCRYPTO_SRC= ${.CURDIR}/../../../crypto/openssl
LCRYPTO_DOC= ${.CURDIR}/../../../crypto/openssl/doc
diff --git a/secure/lib/libcrypto/Makefile.man b/secure/lib/libcrypto/Makefile.man
index 9a5f259080c80..730ffd03779d4 100644
--- a/secure/lib/libcrypto/Makefile.man
+++ b/secure/lib/libcrypto/Makefile.man
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/libcrypto/Makefile.man,v 1.3.12.1 2008/10/02 02:57:24 kensmith Exp $
# DO NOT EDIT: generated from man-makefile-update target
MAN+= ASN1_OBJECT_new.3
MAN+= ASN1_STRING_length.3
diff --git a/secure/lib/libcrypto/i386/bf-586.s b/secure/lib/libcrypto/i386/bf-586.s
index 73e0042430ce7..f4c2589c32c20 100644
--- a/secure/lib/libcrypto/i386/bf-586.s
+++ b/secure/lib/libcrypto/i386/bf-586.s
@@ -1,4 +1,4 @@
- # $FreeBSD$
+ # $FreeBSD: src/secure/lib/libcrypto/i386/bf-586.s,v 1.2.24.1 2008/10/02 02:57:24 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/bf-686.s b/secure/lib/libcrypto/i386/bf-686.s
index d3b4cb8955864..adf74f975a07f 100644
--- a/secure/lib/libcrypto/i386/bf-686.s
+++ b/secure/lib/libcrypto/i386/bf-686.s
@@ -1,4 +1,4 @@
- # $FreeBSD$
+ # $FreeBSD: src/secure/lib/libcrypto/i386/bf-686.s,v 1.2.24.1 2008/10/02 02:57:24 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/bn-586.s b/secure/lib/libcrypto/i386/bn-586.s
index 88c73fa3c9f91..d8aa2947ca7fa 100644
--- a/secure/lib/libcrypto/i386/bn-586.s
+++ b/secure/lib/libcrypto/i386/bn-586.s
@@ -1,4 +1,4 @@
- # $FreeBSD$
+ # $FreeBSD: src/secure/lib/libcrypto/i386/bn-586.s,v 1.2.24.1 2008/10/02 02:57:24 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/cast-586.s b/secure/lib/libcrypto/i386/cast-586.s
index bb31376b57474..d6b173a54621a 100644
--- a/secure/lib/libcrypto/i386/cast-586.s
+++ b/secure/lib/libcrypto/i386/cast-586.s
@@ -1,4 +1,4 @@
- # $FreeBSD$
+ # $FreeBSD: src/secure/lib/libcrypto/i386/cast-586.s,v 1.2.24.1 2008/10/02 02:57:24 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/co-586.s b/secure/lib/libcrypto/i386/co-586.s
index 4e554b0387ed1..6171764dc9f74 100644
--- a/secure/lib/libcrypto/i386/co-586.s
+++ b/secure/lib/libcrypto/i386/co-586.s
@@ -1,4 +1,4 @@
- # $FreeBSD$
+ # $FreeBSD: src/secure/lib/libcrypto/i386/co-586.s,v 1.2.24.1 2008/10/02 02:57:24 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/crypt586.s b/secure/lib/libcrypto/i386/crypt586.s
index dc594e4809e36..74c50ff95bf8a 100644
--- a/secure/lib/libcrypto/i386/crypt586.s
+++ b/secure/lib/libcrypto/i386/crypt586.s
@@ -1,4 +1,4 @@
- # $FreeBSD$
+ # $FreeBSD: src/secure/lib/libcrypto/i386/crypt586.s,v 1.2.24.1 2008/10/02 02:57:24 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/des-586.s b/secure/lib/libcrypto/i386/des-586.s
index b7612905cf20c..0ce88678ca352 100644
--- a/secure/lib/libcrypto/i386/des-586.s
+++ b/secure/lib/libcrypto/i386/des-586.s
@@ -1,4 +1,4 @@
- # $FreeBSD$
+ # $FreeBSD: src/secure/lib/libcrypto/i386/des-586.s,v 1.2.24.1 2008/10/02 02:57:24 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/md5-586.s b/secure/lib/libcrypto/i386/md5-586.s
index b97c357411695..3b70455540056 100644
--- a/secure/lib/libcrypto/i386/md5-586.s
+++ b/secure/lib/libcrypto/i386/md5-586.s
@@ -1,4 +1,4 @@
- # $FreeBSD$
+ # $FreeBSD: src/secure/lib/libcrypto/i386/md5-586.s,v 1.2.24.1 2008/10/02 02:57:24 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/rc4-586.s b/secure/lib/libcrypto/i386/rc4-586.s
index ad274986ac25b..8e41146c42532 100644
--- a/secure/lib/libcrypto/i386/rc4-586.s
+++ b/secure/lib/libcrypto/i386/rc4-586.s
@@ -1,4 +1,4 @@
- # $FreeBSD$
+ # $FreeBSD: src/secure/lib/libcrypto/i386/rc4-586.s,v 1.2.24.1 2008/10/02 02:57:24 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/rc5-586.s b/secure/lib/libcrypto/i386/rc5-586.s
index a33eff94806e7..6b0606e34b75c 100644
--- a/secure/lib/libcrypto/i386/rc5-586.s
+++ b/secure/lib/libcrypto/i386/rc5-586.s
@@ -1,4 +1,4 @@
- # $FreeBSD$
+ # $FreeBSD: src/secure/lib/libcrypto/i386/rc5-586.s,v 1.2.24.1 2008/10/02 02:57:24 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/rmd-586.s b/secure/lib/libcrypto/i386/rmd-586.s
index fb541db16e7a5..08962f4ecea12 100644
--- a/secure/lib/libcrypto/i386/rmd-586.s
+++ b/secure/lib/libcrypto/i386/rmd-586.s
@@ -1,4 +1,4 @@
- # $FreeBSD$
+ # $FreeBSD: src/secure/lib/libcrypto/i386/rmd-586.s,v 1.2.24.1 2008/10/02 02:57:24 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/sha1-586.s b/secure/lib/libcrypto/i386/sha1-586.s
index 4a35f9ddb9629..e54d3d494f76a 100644
--- a/secure/lib/libcrypto/i386/sha1-586.s
+++ b/secure/lib/libcrypto/i386/sha1-586.s
@@ -1,4 +1,4 @@
- # $FreeBSD$
+ # $FreeBSD: src/secure/lib/libcrypto/i386/sha1-586.s,v 1.2.24.1 2008/10/02 02:57:24 kensmith Exp $
diff --git a/secure/lib/libcrypto/opensslconf-alpha.h b/secure/lib/libcrypto/opensslconf-alpha.h
index 14e5af5bf0187..5ab3b466b86f3 100644
--- a/secure/lib/libcrypto/opensslconf-alpha.h
+++ b/secure/lib/libcrypto/opensslconf-alpha.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/secure/lib/libcrypto/opensslconf-alpha.h,v 1.5.24.1 2008/10/02 02:57:24 kensmith Exp $ */
/* opensslconf.h */
/* WARNING: Generated automatically from opensslconf.h.in by Configure. */
diff --git a/secure/lib/libcrypto/opensslconf-amd64.h b/secure/lib/libcrypto/opensslconf-amd64.h
index 14e5af5bf0187..b53b01b00fc8b 100644
--- a/secure/lib/libcrypto/opensslconf-amd64.h
+++ b/secure/lib/libcrypto/opensslconf-amd64.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/secure/lib/libcrypto/opensslconf-amd64.h,v 1.5.24.1 2008/10/02 02:57:24 kensmith Exp $ */
/* opensslconf.h */
/* WARNING: Generated automatically from opensslconf.h.in by Configure. */
diff --git a/secure/lib/libcrypto/opensslconf-arm.h b/secure/lib/libcrypto/opensslconf-arm.h
index 736c996ce4c3c..1851270cee129 100644
--- a/secure/lib/libcrypto/opensslconf-arm.h
+++ b/secure/lib/libcrypto/opensslconf-arm.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/secure/lib/libcrypto/opensslconf-arm.h,v 1.1.20.1 2008/10/02 02:57:24 kensmith Exp $ */
/* opensslconf.h */
/* WARNING: Generated automatically from opensslconf.h.in by Configure. */
diff --git a/secure/lib/libcrypto/opensslconf-i386.h b/secure/lib/libcrypto/opensslconf-i386.h
index 736c996ce4c3c..1c70d818c4a12 100644
--- a/secure/lib/libcrypto/opensslconf-i386.h
+++ b/secure/lib/libcrypto/opensslconf-i386.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/secure/lib/libcrypto/opensslconf-i386.h,v 1.5.24.1 2008/10/02 02:57:24 kensmith Exp $ */
/* opensslconf.h */
/* WARNING: Generated automatically from opensslconf.h.in by Configure. */
diff --git a/secure/lib/libcrypto/opensslconf-ia64.h b/secure/lib/libcrypto/opensslconf-ia64.h
index 14e5af5bf0187..d6d2b941df55e 100644
--- a/secure/lib/libcrypto/opensslconf-ia64.h
+++ b/secure/lib/libcrypto/opensslconf-ia64.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/secure/lib/libcrypto/opensslconf-ia64.h,v 1.4.24.1 2008/10/02 02:57:24 kensmith Exp $ */
/* opensslconf.h */
/* WARNING: Generated automatically from opensslconf.h.in by Configure. */
diff --git a/secure/lib/libcrypto/opensslconf-powerpc.h b/secure/lib/libcrypto/opensslconf-powerpc.h
index 736c996ce4c3c..0a45dd370acdd 100644
--- a/secure/lib/libcrypto/opensslconf-powerpc.h
+++ b/secure/lib/libcrypto/opensslconf-powerpc.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/secure/lib/libcrypto/opensslconf-powerpc.h,v 1.3.24.1 2008/10/02 02:57:24 kensmith Exp $ */
/* opensslconf.h */
/* WARNING: Generated automatically from opensslconf.h.in by Configure. */
diff --git a/secure/lib/libcrypto/opensslconf-sparc64.h b/secure/lib/libcrypto/opensslconf-sparc64.h
index 14e5af5bf0187..674af9d5fef23 100644
--- a/secure/lib/libcrypto/opensslconf-sparc64.h
+++ b/secure/lib/libcrypto/opensslconf-sparc64.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/secure/lib/libcrypto/opensslconf-sparc64.h,v 1.4.24.1 2008/10/02 02:57:24 kensmith Exp $ */
/* opensslconf.h */
/* WARNING: Generated automatically from opensslconf.h.in by Configure. */
diff --git a/secure/lib/libssh/Makefile b/secure/lib/libssh/Makefile
index 327f993826571..e8fe3107841d5 100644
--- a/secure/lib/libssh/Makefile
+++ b/secure/lib/libssh/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/libssh/Makefile,v 1.34.2.5.6.1 2008/10/02 02:57:24 kensmith Exp $
LIB= ssh
SHLIB_MAJOR= 3
diff --git a/secure/lib/libssl/Makefile b/secure/lib/libssl/Makefile
index 4db4b0a4d7c5f..76c3187d00320 100644
--- a/secure/lib/libssl/Makefile
+++ b/secure/lib/libssl/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/libssl/Makefile,v 1.21.2.1.10.1 2008/10/02 02:57:24 kensmith Exp $
LIB= ssl
SHLIB_MAJOR= 4
diff --git a/secure/lib/libssl/Makefile.man b/secure/lib/libssl/Makefile.man
index 402bdb7a8770f..c54c477263bfe 100644
--- a/secure/lib/libssl/Makefile.man
+++ b/secure/lib/libssl/Makefile.man
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/libssl/Makefile.man,v 1.1.26.1 2008/10/02 02:57:24 kensmith Exp $
# DO NOT EDIT: generated from man-makefile-update target
MAN+= SSL_CIPHER_get_name.3
MAN+= SSL_COMP_add_compression_method.3