aboutsummaryrefslogtreecommitdiff
path: root/secure/lib
diff options
context:
space:
mode:
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/engines/Makefile2
-rw-r--r--secure/lib/libcrypto/engines/Makefile.inc2
-rw-r--r--secure/lib/libcrypto/engines/lib4758cca/Makefile2
-rw-r--r--secure/lib/libcrypto/engines/libaep/Makefile2
-rw-r--r--secure/lib/libcrypto/engines/libatalla/Makefile2
-rw-r--r--secure/lib/libcrypto/engines/libchil/Makefile2
-rw-r--r--secure/lib/libcrypto/engines/libcswift/Makefile2
-rw-r--r--secure/lib/libcrypto/engines/libnuron/Makefile2
-rw-r--r--secure/lib/libcrypto/engines/libsureware/Makefile2
-rw-r--r--secure/lib/libcrypto/engines/libubsec/Makefile2
-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-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
41 files changed, 41 insertions, 41 deletions
diff --git a/secure/lib/Makefile b/secure/lib/Makefile
index e27bcc39dd49..e8f230e6f3d3 100644
--- a/secure/lib/Makefile
+++ b/secure/lib/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/Makefile,v 1.34.8.1 2009/04/15 03:14:26 kensmith Exp $
.include <bsd.own.mk>
diff --git a/secure/lib/Makefile.inc b/secure/lib/Makefile.inc
index 002a3f70ef33..e1b2c8a886b8 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.32.1 2009/04/15 03:14:26 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 5b33f025fdfd..6ede969aa88c 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.30.1 2009/04/15 03:14:26 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 2ea64749b9f1..fd885491b510 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.30.1 2009/04/15 03:14:26 kensmith Exp $
*/
/*
diff --git a/secure/lib/libcrypt/crypt-blowfish.c b/secure/lib/libcrypt/crypt-blowfish.c
index 649d07cb30fd..ac387de9b40d 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.30.1 2009/04/15 03:14:26 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 9adff936f3ad..6dec6cf85f7f 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.34.1 2009/04/15 03:14:26 kensmith Exp $");
#include <sys/types.h>
#include <sys/param.h>
diff --git a/secure/lib/libcrypto/Makefile b/secure/lib/libcrypto/Makefile
index 9a0c7f7280b9..44496f0ff0ab 100644
--- a/secure/lib/libcrypto/Makefile
+++ b/secure/lib/libcrypto/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/libcrypto/Makefile,v 1.81.8.1 2009/04/15 03:14:26 kensmith Exp $
SHLIBDIR?= /lib
SUBDIR= engines
diff --git a/secure/lib/libcrypto/Makefile.asm b/secure/lib/libcrypto/Makefile.asm
index 50584ee03ed6..2e1bdf5836ec 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.20.1 2009/04/15 03:14:26 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 ad17d85237f5..29c155689778 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.47.8.1 2009/04/15 03:14:26 kensmith Exp $
.include <bsd.own.mk>
diff --git a/secure/lib/libcrypto/Makefile.man b/secure/lib/libcrypto/Makefile.man
index e6cc9b876629..22f0ee2539e2 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.6.8.1 2009/04/15 03:14:26 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/engines/Makefile b/secure/lib/libcrypto/engines/Makefile
index 6250527e6e9a..a6ab2dd575a6 100644
--- a/secure/lib/libcrypto/engines/Makefile
+++ b/secure/lib/libcrypto/engines/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/libcrypto/engines/Makefile,v 1.1.8.1 2009/04/15 03:14:26 kensmith Exp $
SUBDIR= lib4758cca libaep libatalla libcswift libchil libnuron \
libsureware libubsec
diff --git a/secure/lib/libcrypto/engines/Makefile.inc b/secure/lib/libcrypto/engines/Makefile.inc
index a71820f442a0..2b1317d6053c 100644
--- a/secure/lib/libcrypto/engines/Makefile.inc
+++ b/secure/lib/libcrypto/engines/Makefile.inc
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/libcrypto/engines/Makefile.inc,v 1.1.8.1 2009/04/15 03:14:26 kensmith Exp $
LCRYPTO_SRC= ${.CURDIR}/../../../../../crypto/openssl
.PATH: ${LCRYPTO_SRC}/engines
diff --git a/secure/lib/libcrypto/engines/lib4758cca/Makefile b/secure/lib/libcrypto/engines/lib4758cca/Makefile
index 4144034cc024..d258adac8510 100644
--- a/secure/lib/libcrypto/engines/lib4758cca/Makefile
+++ b/secure/lib/libcrypto/engines/lib4758cca/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/libcrypto/engines/lib4758cca/Makefile,v 1.1.8.1 2009/04/15 03:14:26 kensmith Exp $
SHLIB_NAME?= lib4758cca.so
SRCS= e_4758cca.c
diff --git a/secure/lib/libcrypto/engines/libaep/Makefile b/secure/lib/libcrypto/engines/libaep/Makefile
index 66997dffffea..7ebcf8c8983e 100644
--- a/secure/lib/libcrypto/engines/libaep/Makefile
+++ b/secure/lib/libcrypto/engines/libaep/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/libcrypto/engines/libaep/Makefile,v 1.1.8.1 2009/04/15 03:14:26 kensmith Exp $
SHLIB_NAME?= libaep.so
SRCS= e_aep.c
diff --git a/secure/lib/libcrypto/engines/libatalla/Makefile b/secure/lib/libcrypto/engines/libatalla/Makefile
index 6223dea79d07..d66b3a22e1b6 100644
--- a/secure/lib/libcrypto/engines/libatalla/Makefile
+++ b/secure/lib/libcrypto/engines/libatalla/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/libcrypto/engines/libatalla/Makefile,v 1.1.8.1 2009/04/15 03:14:26 kensmith Exp $
SHLIB_NAME?= libatalla.so
SRCS= e_atalla.c
diff --git a/secure/lib/libcrypto/engines/libchil/Makefile b/secure/lib/libcrypto/engines/libchil/Makefile
index 14972c9f7763..065279103760 100644
--- a/secure/lib/libcrypto/engines/libchil/Makefile
+++ b/secure/lib/libcrypto/engines/libchil/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/libcrypto/engines/libchil/Makefile,v 1.1.8.1 2009/04/15 03:14:26 kensmith Exp $
SHLIB_NAME?= libchil.so
SRCS= e_chil.c
diff --git a/secure/lib/libcrypto/engines/libcswift/Makefile b/secure/lib/libcrypto/engines/libcswift/Makefile
index 38b00455cb78..5e66485f3be4 100644
--- a/secure/lib/libcrypto/engines/libcswift/Makefile
+++ b/secure/lib/libcrypto/engines/libcswift/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/libcrypto/engines/libcswift/Makefile,v 1.1.8.1 2009/04/15 03:14:26 kensmith Exp $
SHLIB_NAME?= libcswift.so
SRCS= e_cswift.c
diff --git a/secure/lib/libcrypto/engines/libnuron/Makefile b/secure/lib/libcrypto/engines/libnuron/Makefile
index 82aab9b3a58b..3d70503471c8 100644
--- a/secure/lib/libcrypto/engines/libnuron/Makefile
+++ b/secure/lib/libcrypto/engines/libnuron/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/libcrypto/engines/libnuron/Makefile,v 1.1.8.1 2009/04/15 03:14:26 kensmith Exp $
SHLIB_NAME?= libnuron.so
SRCS= e_nuron.c
diff --git a/secure/lib/libcrypto/engines/libsureware/Makefile b/secure/lib/libcrypto/engines/libsureware/Makefile
index 4d176ee50ca8..43504d7ab6bf 100644
--- a/secure/lib/libcrypto/engines/libsureware/Makefile
+++ b/secure/lib/libcrypto/engines/libsureware/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/libcrypto/engines/libsureware/Makefile,v 1.1.8.1 2009/04/15 03:14:26 kensmith Exp $
SHLIB_NAME?= libsureware.so
SRCS= e_sureware.c
diff --git a/secure/lib/libcrypto/engines/libubsec/Makefile b/secure/lib/libcrypto/engines/libubsec/Makefile
index e02efaba64fc..ee88f0ff478e 100644
--- a/secure/lib/libcrypto/engines/libubsec/Makefile
+++ b/secure/lib/libcrypto/engines/libubsec/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/libcrypto/engines/libubsec/Makefile,v 1.1.8.1 2009/04/15 03:14:26 kensmith Exp $
SHLIB_NAME?= libubsec.so
SRCS= e_ubsec.c
diff --git a/secure/lib/libcrypto/i386/bf-586.s b/secure/lib/libcrypto/i386/bf-586.s
index 73e0042430ce..105d16d511eb 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.28.1 2009/04/15 03:14:26 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/bf-686.s b/secure/lib/libcrypto/i386/bf-686.s
index d3b4cb895586..d01167dcd147 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.28.1 2009/04/15 03:14:26 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/bn-586.s b/secure/lib/libcrypto/i386/bn-586.s
index 88c73fa3c9f9..f2ae4314e4de 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.28.1 2009/04/15 03:14:26 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/cast-586.s b/secure/lib/libcrypto/i386/cast-586.s
index bb31376b5747..9bc4d60b8034 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.28.1 2009/04/15 03:14:26 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/co-586.s b/secure/lib/libcrypto/i386/co-586.s
index 4e554b0387ed..dccee0151449 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.28.1 2009/04/15 03:14:26 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/crypt586.s b/secure/lib/libcrypto/i386/crypt586.s
index dc594e4809e3..dabc5744aa2c 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.28.1 2009/04/15 03:14:26 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/des-586.s b/secure/lib/libcrypto/i386/des-586.s
index b7612905cf20..83131aca9450 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.28.1 2009/04/15 03:14:26 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/md5-586.s b/secure/lib/libcrypto/i386/md5-586.s
index b97c35741169..8904eaa4027b 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.28.1 2009/04/15 03:14:26 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/rc4-586.s b/secure/lib/libcrypto/i386/rc4-586.s
index ad274986ac25..259363757dde 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.28.1 2009/04/15 03:14:26 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/rc5-586.s b/secure/lib/libcrypto/i386/rc5-586.s
index a33eff94806e..c41809bad0c2 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.28.1 2009/04/15 03:14:26 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/rmd-586.s b/secure/lib/libcrypto/i386/rmd-586.s
index fb541db16e7a..37a6a8331a86 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.28.1 2009/04/15 03:14:26 kensmith Exp $
diff --git a/secure/lib/libcrypto/i386/sha1-586.s b/secure/lib/libcrypto/i386/sha1-586.s
index 4a35f9ddb962..89c22ab28532 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.28.1 2009/04/15 03:14:26 kensmith Exp $
diff --git a/secure/lib/libcrypto/opensslconf-amd64.h b/secure/lib/libcrypto/opensslconf-amd64.h
index cc0dde1690a3..82b02767c954 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.8.8.1 2009/04/15 03:14:26 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 ff53f1cc7724..4880131ec87d 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.3.8.1 2009/04/15 03:14:26 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 f8ecc656b28e..2b56b92d1c5b 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.8.8.1 2009/04/15 03:14:26 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 6728bdc4688e..e0220d6632eb 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.6.8.1 2009/04/15 03:14:26 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 ff53f1cc7724..736ba30124c3 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.5.8.1 2009/04/15 03:14:26 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 6728bdc4688e..5ab1b0338bf0 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.6.8.1 2009/04/15 03:14:26 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 033fc1e015a5..149d36d7840e 100644
--- a/secure/lib/libssh/Makefile
+++ b/secure/lib/libssh/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/libssh/Makefile,v 1.43.2.1.4.1 2009/04/15 03:14:26 kensmith Exp $
.include <bsd.own.mk>
diff --git a/secure/lib/libssl/Makefile b/secure/lib/libssl/Makefile
index 5550b9b54598..4f033b14c624 100644
--- a/secure/lib/libssl/Makefile
+++ b/secure/lib/libssl/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/secure/lib/libssl/Makefile,v 1.25.8.1 2009/04/15 03:14:26 kensmith Exp $
LIB= ssl
SHLIB_MAJOR= 5
diff --git a/secure/lib/libssl/Makefile.man b/secure/lib/libssl/Makefile.man
index 77d1aed0b725..539968b88c59 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.4.8.1 2009/04/15 03:14:26 kensmith Exp $
# DO NOT EDIT: generated from man-makefile-update target
MAN+= SSL_CIPHER_get_name.3
MAN+= SSL_COMP_add_compression_method.3