Add __FBSDID() to diff-reduce with "base" telnet.

git-svn-id: http://svn0.us-east.freebsd.org/base/head/contrib/telnet@84305 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f
This commit is contained in:
markm 2001-10-01 16:04:55 +00:00
parent 3efb267b2d
commit 1f6fc161a6
14 changed files with 40 additions and 28 deletions

View File

@ -33,6 +33,9 @@
* $FreeBSD$ * $FreeBSD$
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)auth.c 8.3 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)auth.c 8.3 (Berkeley) 5/30/95";
#endif /* not lint */ #endif /* not lint */

View File

@ -33,6 +33,9 @@
* $FreeBSD$ * $FreeBSD$
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)enc_des.c 8.3 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)enc_des.c 8.3 (Berkeley) 5/30/95";
#endif /* not lint */ #endif /* not lint */

View File

@ -31,12 +31,12 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
#if 0 #if 0
static const char sccsid[] = "@(#)encrypt.c 8.2 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)encrypt.c 8.2 (Berkeley) 5/30/95";
#else
static const char rcsid[] =
"$FreeBSD$";
#endif #endif
#endif /* not lint */ #endif /* not lint */

View File

@ -31,12 +31,12 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
#if 0 #if 0
static const char sccsid[] = "@(#)genget.c 8.2 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)genget.c 8.2 (Berkeley) 5/30/95";
#else
static const char rcsid[] =
"$FreeBSD$";
#endif #endif
#endif /* not lint */ #endif /* not lint */

View File

@ -31,12 +31,12 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
#if 0 #if 0
static char sccsid[] = "@(#)getent.c 8.2 (Berkeley) 12/15/93"; static char sccsid[] = "@(#)getent.c 8.2 (Berkeley) 12/15/93";
#else
static const char rcsid[] =
"$FreeBSD$";
#endif #endif
#endif /* not lint */ #endif /* not lint */

View File

@ -33,6 +33,9 @@
* $FreeBSD$ * $FreeBSD$
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)kerberos.c 8.3 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)kerberos.c 8.3 (Berkeley) 5/30/95";
#endif /* not lint */ #endif /* not lint */

View File

@ -4,13 +4,8 @@
* $Id: kerberos5.c,v 1.1 1997/09/04 06:11:15 markm Exp $ * $Id: kerberos5.c,v 1.1 1997/09/04 06:11:15 markm Exp $
*/ */
#if !defined(lint) && !defined(SABER) #include <sys/cdefs.h>
static __FBSDID("$FreeBSD$");
#ifdef __STDC__
const
#endif
char rcsid_kerberos5_c[] = "$FreeBSD$";
#endif /* lint */
/*- /*-
* Copyright (c) 1991, 1993 * Copyright (c) 1991, 1993

View File

@ -29,10 +29,11 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
*
* $FreeBSD$
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static char sccsid[] = "@(#)krb4encpwd.c 8.3 (Berkeley) 5/30/95"; static char sccsid[] = "@(#)krb4encpwd.c 8.3 (Berkeley) 5/30/95";
#endif /* not lint */ #endif /* not lint */

View File

@ -31,12 +31,12 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
#if 0 #if 0
static const char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 6/4/93"; static const char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 6/4/93";
#else
static const char rcsid[] =
"$FreeBSD$";
#endif #endif
#endif /* not lint */ #endif /* not lint */

View File

@ -1,5 +1,4 @@
/* public key routines */ /* public key routines */
/* $FreeBSD$ */
/* functions: /* functions:
genkeys(char *public, char *secret) genkeys(char *public, char *secret)
common_key(char *secret, char *public, desData *deskey) common_key(char *secret, char *public, desData *deskey)
@ -10,6 +9,9 @@
char secret[HEXKEYBYTES + 1]; char secret[HEXKEYBYTES + 1];
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/time.h> #include <sys/time.h>
#include <openssl/des.h> #include <openssl/des.h>
#include <fcntl.h> #include <fcntl.h>

View File

@ -31,12 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
#if 0 #if 0
static char sccsid[] = "@(#)read_password.c 8.3 (Berkeley) 5/30/95"; static char sccsid[] = "@(#)read_password.c 8.3 (Berkeley) 5/30/95";
#endif #endif
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */ #endif /* not lint */
/* /*

View File

@ -31,6 +31,9 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static char sccsid[] = "@(#)rsaencpwd.c 8.3 (Berkeley) 5/30/95"; static char sccsid[] = "@(#)rsaencpwd.c 8.3 (Berkeley) 5/30/95";
#endif /* not lint */ #endif /* not lint */

View File

@ -31,12 +31,12 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
#if 0 #if 0
static char sccsid[] = "@(#)spx.c 8.2 (Berkeley) 5/30/95"; static char sccsid[] = "@(#)spx.c 8.2 (Berkeley) 5/30/95";
#else
static const char rcsid[] =
"$FreeBSD$";
#endif #endif
#endif /* not lint */ #endif /* not lint */

View File

@ -1,4 +1,5 @@
/* $FreeBSD$ */ #include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifdef SRA #ifdef SRA
#include <sys/types.h> #include <sys/types.h>