diff options
author | Theodore Tso <tytso@mit.edu> | 1994-06-10 18:33:58 +0000 |
---|---|---|
committer | Theodore Tso <tytso@mit.edu> | 1994-06-10 18:33:58 +0000 |
commit | 5ef43beff03aa2cd77c7248356b9cb2ae17137a1 (patch) | |
tree | f9077fa94dce77e857c0a690f9af55954703a131 /src/appl/telnet/libtelnet/misc.c | |
parent | 62d4c19ae4464d001d5736b813d02286f2fe32ce (diff) | |
download | krb5-5ef43beff03aa2cd77c7248356b9cb2ae17137a1.tar.gz krb5-5ef43beff03aa2cd77c7248356b9cb2ae17137a1.tar.xz krb5-5ef43beff03aa2cd77c7248356b9cb2ae17137a1.zip |
Updated telnet to be the 94.02.07 version, with some bugfixes
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3704 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/appl/telnet/libtelnet/misc.c')
-rw-r--r-- | src/appl/telnet/libtelnet/misc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/appl/telnet/libtelnet/misc.c b/src/appl/telnet/libtelnet/misc.c index 392626c756..9565900a39 100644 --- a/src/appl/telnet/libtelnet/misc.c +++ b/src/appl/telnet/libtelnet/misc.c @@ -1,6 +1,6 @@ /*- - * Copyright (c) 1991 The Regents of the University of California. - * All rights reserved. + * Copyright (c) 1991, 1993 + * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -32,7 +32,7 @@ */ #ifndef lint -static char sccsid[] = "@(#)misc.c 5.3 (Berkeley) 1/20/93"; +static char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 6/4/93"; #endif /* not lint */ #include "misc.h" @@ -54,9 +54,9 @@ auth_encrypt_init(local, remote, name, server) #if defined(AUTHENTICATION) auth_init(name, server); #endif -#if defined(ENCRYPTION) +#ifdef ENCRYPTION encrypt_init(name, server); -#endif +#endif /* ENCRYPTION */ if (UserNameRequested) { free(UserNameRequested); UserNameRequested = 0; |