Browse Source

Fix RCS ids

Make sure everything uses {SYS,}LIBC_SCCS properly
OPENBSD_2_0
tholo 28 years ago
parent
commit
9cc7ffcbd2
3 changed files with 11 additions and 7 deletions
  1. +5
    -2
      src/lib/libc/crypt/crypt.c
  2. +1
    -3
      src/lib/libc/crypt/md5crypt.c
  3. +5
    -2
      src/lib/libc/crypt/morecrypt.c

+ 5
- 2
src/lib/libc/crypt/crypt.c View File

@ -1,5 +1,3 @@
/* $OpenBSD: crypt.c,v 1.5 1996/07/02 23:05:55 deraadt Exp $ */
/*
* FreeSec: libcrypt
*
@ -50,6 +48,11 @@
* only the crypt() interface. This is required to make binaries linked
* against crypt.o exportable or re-exportable from the USA.
*/
#if defined(LIBC_SCCS) && !defined(lint)
static char rcsid[] = "$OpenBSD: crypt.c,v 1.6 1996/08/19 08:19:49 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
#include <sys/param.h>
#include <pwd.h>


+ 1
- 3
src/lib/libc/crypt/md5crypt.c View File

@ -1,5 +1,3 @@
/* $OpenBSD: md5crypt.c,v 1.3 1996/07/02 23:05:38 deraadt Exp $ */
/*
* ----------------------------------------------------------------------------
* "THE BEER-WARE LICENSE" (Revision 42):
@ -11,7 +9,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
static char rcsid[] = "$OpenBSD: md5crypt.c,v 1.3 1996/07/02 23:05:38 deraadt Exp $";
static char rcsid[] = "$OpenBSD: md5crypt.c,v 1.4 1996/08/19 08:19:50 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <unistd.h>


+ 5
- 2
src/lib/libc/crypt/morecrypt.c View File

@ -1,5 +1,3 @@
/* $OpenBSD: morecrypt.c,v 1.5 1996/06/03 22:20:37 niklas Exp $ */
/*
* FreeSec: libcrypt
*
@ -51,6 +49,11 @@
* exportable from the USA. Hence, to also have the other crypto interfaces
* available we have to copy pieces...
*/
#if defined(LIBC_SCCS) && !defined(lint)
static char rcsid[] = "$OpenBSD: morecrypt.c,v 1.6 1996/08/19 08:19:51 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
#include <sys/param.h>
#include <pwd.h>


Loading…
Cancel
Save