diff options
author | tholo <> | 1996-08-19 08:19:51 +0000 |
---|---|---|
committer | tholo <> | 1996-08-19 08:19:51 +0000 |
commit | 057dc3cd255a3e12f9cb92d21ec3f71c65cfd475 (patch) | |
tree | eeb109c37c4698e6c2d4ca59f97888a99c9cfb52 /src | |
parent | bb6d592d16d9d32acc856c41ac3bc30aeed7b8b3 (diff) | |
download | openbsd-057dc3cd255a3e12f9cb92d21ec3f71c65cfd475.tar.gz openbsd-057dc3cd255a3e12f9cb92d21ec3f71c65cfd475.tar.bz2 openbsd-057dc3cd255a3e12f9cb92d21ec3f71c65cfd475.zip |
Fix RCS ids
Make sure everything uses {SYS,}LIBC_SCCS properly
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libc/crypt/crypt.c | 7 | ||||
-rw-r--r-- | src/lib/libc/crypt/md5crypt.c | 4 | ||||
-rw-r--r-- | src/lib/libc/crypt/morecrypt.c | 7 |
3 files changed, 11 insertions, 7 deletions
diff --git a/src/lib/libc/crypt/crypt.c b/src/lib/libc/crypt/crypt.c index 074a40bde8..ec2dee8c3f 100644 --- a/src/lib/libc/crypt/crypt.c +++ b/src/lib/libc/crypt/crypt.c | |||
@@ -1,5 +1,3 @@ | |||
1 | /* $OpenBSD: crypt.c,v 1.5 1996/07/02 23:05:55 deraadt Exp $ */ | ||
2 | |||
3 | /* | 1 | /* |
4 | * FreeSec: libcrypt | 2 | * FreeSec: libcrypt |
5 | * | 3 | * |
@@ -50,6 +48,11 @@ | |||
50 | * only the crypt() interface. This is required to make binaries linked | 48 | * only the crypt() interface. This is required to make binaries linked |
51 | * against crypt.o exportable or re-exportable from the USA. | 49 | * against crypt.o exportable or re-exportable from the USA. |
52 | */ | 50 | */ |
51 | |||
52 | #if defined(LIBC_SCCS) && !defined(lint) | ||
53 | static char rcsid[] = "$OpenBSD: crypt.c,v 1.6 1996/08/19 08:19:49 tholo Exp $"; | ||
54 | #endif /* LIBC_SCCS and not lint */ | ||
55 | |||
53 | #include <sys/types.h> | 56 | #include <sys/types.h> |
54 | #include <sys/param.h> | 57 | #include <sys/param.h> |
55 | #include <pwd.h> | 58 | #include <pwd.h> |
diff --git a/src/lib/libc/crypt/md5crypt.c b/src/lib/libc/crypt/md5crypt.c index 0d661cb754..0efd81c36e 100644 --- a/src/lib/libc/crypt/md5crypt.c +++ b/src/lib/libc/crypt/md5crypt.c | |||
@@ -1,5 +1,3 @@ | |||
1 | /* $OpenBSD: md5crypt.c,v 1.3 1996/07/02 23:05:38 deraadt Exp $ */ | ||
2 | |||
3 | /* | 1 | /* |
4 | * ---------------------------------------------------------------------------- | 2 | * ---------------------------------------------------------------------------- |
5 | * "THE BEER-WARE LICENSE" (Revision 42): | 3 | * "THE BEER-WARE LICENSE" (Revision 42): |
@@ -11,7 +9,7 @@ | |||
11 | */ | 9 | */ |
12 | 10 | ||
13 | #if defined(LIBC_SCCS) && !defined(lint) | 11 | #if defined(LIBC_SCCS) && !defined(lint) |
14 | static char rcsid[] = "$OpenBSD: md5crypt.c,v 1.3 1996/07/02 23:05:38 deraadt Exp $"; | 12 | static char rcsid[] = "$OpenBSD: md5crypt.c,v 1.4 1996/08/19 08:19:50 tholo Exp $"; |
15 | #endif /* LIBC_SCCS and not lint */ | 13 | #endif /* LIBC_SCCS and not lint */ |
16 | 14 | ||
17 | #include <unistd.h> | 15 | #include <unistd.h> |
diff --git a/src/lib/libc/crypt/morecrypt.c b/src/lib/libc/crypt/morecrypt.c index f68e2fccac..0ce7ac74bc 100644 --- a/src/lib/libc/crypt/morecrypt.c +++ b/src/lib/libc/crypt/morecrypt.c | |||
@@ -1,5 +1,3 @@ | |||
1 | /* $OpenBSD: morecrypt.c,v 1.5 1996/06/03 22:20:37 niklas Exp $ */ | ||
2 | |||
3 | /* | 1 | /* |
4 | * FreeSec: libcrypt | 2 | * FreeSec: libcrypt |
5 | * | 3 | * |
@@ -51,6 +49,11 @@ | |||
51 | * exportable from the USA. Hence, to also have the other crypto interfaces | 49 | * exportable from the USA. Hence, to also have the other crypto interfaces |
52 | * available we have to copy pieces... | 50 | * available we have to copy pieces... |
53 | */ | 51 | */ |
52 | |||
53 | #if defined(LIBC_SCCS) && !defined(lint) | ||
54 | static char rcsid[] = "$OpenBSD: morecrypt.c,v 1.6 1996/08/19 08:19:51 tholo Exp $"; | ||
55 | #endif /* LIBC_SCCS and not lint */ | ||
56 | |||
54 | #include <sys/types.h> | 57 | #include <sys/types.h> |
55 | #include <sys/param.h> | 58 | #include <sys/param.h> |
56 | #include <pwd.h> | 59 | #include <pwd.h> |