Add __FBSDID()s to librpcsvc

This commit is contained in:
Matthew Dillon 2001-09-30 22:15:15 +00:00
parent f8014c0927
commit 542d87feca
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=84220
7 changed files with 25 additions and 16 deletions

View File

@ -27,6 +27,10 @@
* 2550 Garcia Avenue
* Mountain View, California 94043
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#if !defined(lint) && defined(SCCSIDS)
static char sccsid[] = "@(#)rnusers.c 1.2 91/03/11 TIRPC 1.0; from 1.7 89/03/24 SMI";
#endif

View File

@ -27,6 +27,10 @@
* 2550 Garcia Avenue
* Mountain View, California 94043
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#if !defined(lint) && defined(SCCSIDS)
static char sccsid[] = "@(#)rstat.c 1.2 91/03/11 TIRPC 1.0; from 1.6 89/03/24 SMI";
#endif

View File

@ -27,6 +27,10 @@
* 2550 Garcia Avenue
* Mountain View, California 94043
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#if !defined(lint) && defined(SCCSIDS)
static char sccsid[] = "@(#)rwall.c 1.2 91/03/11 TIRPC 1.0; from 1.3 89/03/24 SMI";
#endif

View File

@ -27,6 +27,10 @@
* 2550 Garcia Avenue
* Mountain View, California 94043
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#if !defined(lint) && defined(SCCSIDS)
static char sccsid[] = "@(#)secretkey.c 1.8 91/03/11 Copyr 1986 Sun Micro";
#endif

View File

@ -32,17 +32,14 @@
* Copyright (C) 1986, Sun Microsystems, Inc.
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/cdefs.h>
#include <rpc/des_crypt.h>
#ifndef lint
/*from: static char sccsid[] = "@(#)xcrypt.c 2.2 88/08/10 4.0 RPCSRC"; */
static const char rcsid[] = "$FreeBSD$";
#endif
static char hex[]; /* forward */
static char hexval __P(( char ));
static void bin2hex __P(( int, unsigned char *, char * ));

View File

@ -30,6 +30,9 @@
* SUCH DAMAGE.
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <stdlib.h>
#include <rpc/rpc.h>
#include <rpcsvc/yp_prot.h>
@ -37,11 +40,6 @@
#include <rpcsvc/yppasswd.h>
#include <netinet/in.h>
#ifndef lint
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
/*
* XXX <rpcsvc/yppasswd.h> does a typedef that makes 'yppasswd'
* a type of struct yppasswd. This leads to a namespace collision:

View File

@ -36,6 +36,9 @@
* Columbia University, New York City
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <stdlib.h>
#include <rpc/rpc.h>
#include <rpcsvc/yp_prot.h>
@ -43,11 +46,6 @@
#include <rpcsvc/ypupdate_prot.h>
#include <rpc/key_prot.h>
#ifndef lint
static const char rcsid[] =
"$FreeBSD$";
#endif
#ifndef WINDOW
#define WINDOW (60*60)
#endif