summaryrefslogtreecommitdiffstats
path: root/secure/lib/libcrypt
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1997-01-14 07:20:47 +0000
committerjkh <jkh@FreeBSD.org>1997-01-14 07:20:47 +0000
commit808a36ef658c1810327b5d329469bcf5dad24b28 (patch)
tree1ee435de0c816086549d85bbabfe30ead7f413ec /secure/lib/libcrypt
parent058c86d9e8b4a705d2d3f2c0b52d63a2534e97e3 (diff)
downloadFreeBSD-src-808a36ef658c1810327b5d329469bcf5dad24b28.zip
FreeBSD-src-808a36ef658c1810327b5d329469bcf5dad24b28.tar.gz
Make the long-awaited change from $Id$ to $FreeBSD$
This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
Diffstat (limited to 'secure/lib/libcrypt')
-rw-r--r--secure/lib/libcrypt/Makefile2
-rw-r--r--secure/lib/libcrypt/README2
-rw-r--r--secure/lib/libcrypt/README.FreeBSD2
-rw-r--r--secure/lib/libcrypt/crypt-des.c2
-rw-r--r--secure/lib/libcrypt/crypt-md5.c4
-rw-r--r--secure/lib/libcrypt/crypt.32
-rw-r--r--secure/lib/libcrypt/crypt.c2
-rw-r--r--secure/lib/libcrypt/test/Makefile2
-rw-r--r--secure/lib/libcrypt/test/cert.c2
-rw-r--r--secure/lib/libcrypt/test/cert.input2
10 files changed, 11 insertions, 11 deletions
diff --git a/secure/lib/libcrypt/Makefile b/secure/lib/libcrypt/Makefile
index 7963770..42f83a4 100644
--- a/secure/lib/libcrypt/Makefile
+++ b/secure/lib/libcrypt/Makefile
@@ -1,5 +1,5 @@
#
-# $Id: Makefile,v 1.10 1996/03/24 07:30:27 markm Exp $
+# $FreeBSD$
#
LCRYPTBASE= libcrypt
diff --git a/secure/lib/libcrypt/README b/secure/lib/libcrypt/README
index 051c9c1..ab8af5a 100644
--- a/secure/lib/libcrypt/README
+++ b/secure/lib/libcrypt/README
@@ -4,7 +4,7 @@
David Burren <davidb@werj.com.au>
Release 1.0, March 1994
- Document ref: $Id: README,v 1.1.1.1 1994/04/04 14:57:18 g89r4222 Exp $
+ Document ref: $FreeBSD$
Description
diff --git a/secure/lib/libcrypt/README.FreeBSD b/secure/lib/libcrypt/README.FreeBSD
index 250467e..e940aeb 100644
--- a/secure/lib/libcrypt/README.FreeBSD
+++ b/secure/lib/libcrypt/README.FreeBSD
@@ -1,4 +1,4 @@
-$Id: README.FreeBSD,v 1.2 1994/04/04 15:10:57 g89r4222 Exp $
+$FreeBSD$
This is FreeSec package for NetBSD, unchanged for
FreeBSD, except for the Makefile.
diff --git a/secure/lib/libcrypt/crypt-des.c b/secure/lib/libcrypt/crypt-des.c
index 31b2024..d013263 100644
--- a/secure/lib/libcrypt/crypt-des.c
+++ b/secure/lib/libcrypt/crypt-des.c
@@ -32,7 +32,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $FreeBSD$
*
* This is an original implementation of the DES and the crypt(3) interfaces
* by David Burren <davidb@werj.com.au>.
diff --git a/secure/lib/libcrypt/crypt-md5.c b/secure/lib/libcrypt/crypt-md5.c
index 6740f72..54be6c6 100644
--- a/secure/lib/libcrypt/crypt-md5.c
+++ b/secure/lib/libcrypt/crypt-md5.c
@@ -9,13 +9,13 @@
* This has had its entry point changed to crypt_md5 for use in
* a dual-personality (DES & MD5) environment) -- MarkM - Nov 1995
*
- * $Id$
+ * $FreeBSD$
*
*/
#if 0
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$Header: /home/ncvs/src/lib/libcrypt/crypt.c,v 1.3 1995/05/30 05:42:22 rgrimes Exp $";
+static char rcsid[] = "$Header: /home/ncvs/src/secure/lib/libcrypt/crypt-md5.c,v 1.1 1995/12/16 09:14:09 markm Exp $";
#endif /* LIBC_SCCS and not lint */
#endif
diff --git a/secure/lib/libcrypt/crypt.3 b/secure/lib/libcrypt/crypt.3
index 9eefd25..815d7e6 100644
--- a/secure/lib/libcrypt/crypt.3
+++ b/secure/lib/libcrypt/crypt.3
@@ -27,7 +27,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" $Id: crypt.3,v 1.5 1995/12/16 09:01:49 markm Exp $
+.\" $FreeBSD$
.\"
.\" Manual page, using -mandoc macros
.\"
diff --git a/secure/lib/libcrypt/crypt.c b/secure/lib/libcrypt/crypt.c
index 31b2024..d013263 100644
--- a/secure/lib/libcrypt/crypt.c
+++ b/secure/lib/libcrypt/crypt.c
@@ -32,7 +32,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $FreeBSD$
*
* This is an original implementation of the DES and the crypt(3) interfaces
* by David Burren <davidb@werj.com.au>.
diff --git a/secure/lib/libcrypt/test/Makefile b/secure/lib/libcrypt/test/Makefile
index c55a276..0ba817f 100644
--- a/secure/lib/libcrypt/test/Makefile
+++ b/secure/lib/libcrypt/test/Makefile
@@ -2,7 +2,7 @@
# Hacked Makefile to compile and run the DES-certification program,
# but not install anything.
#
-# $Id: Makefile,v 1.4 1995/05/30 06:11:48 rgrimes Exp $
+# $FreeBSD$
#
LIBCRYPT= $(.OBJDIR)/libdescrypt.a
diff --git a/secure/lib/libcrypt/test/cert.c b/secure/lib/libcrypt/test/cert.c
index b2e3ae5..54c606c 100644
--- a/secure/lib/libcrypt/test/cert.c
+++ b/secure/lib/libcrypt/test/cert.c
@@ -3,7 +3,7 @@
* shipped with UFC-crypt which is apparently derived from one distributed
* with Phil Karns PD DES package.
*
- * $Id: cert.c,v 1.2 1994/08/08 17:29:03 csgr Exp $
+ * $FreeBSD$
*/
#include <stdio.h>
diff --git a/secure/lib/libcrypt/test/cert.input b/secure/lib/libcrypt/test/cert.input
index d0fa7a5..e7c715c 100644
--- a/secure/lib/libcrypt/test/cert.input
+++ b/secure/lib/libcrypt/test/cert.input
@@ -1,4 +1,4 @@
-# $Id: cert.input,v 1.1.1.1 1994/04/04 14:57:19 g89r4222 Exp $
+# $FreeBSD$
#
# Salt, key, plaintext, ciphertext
#
OpenPOWER on IntegriCloud