diff options
Diffstat (limited to 'usr.bin/telnet/authenc.c')
-rw-r--r-- | usr.bin/telnet/authenc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/telnet/authenc.c b/usr.bin/telnet/authenc.c index 26100e47ff8..ba86eea4416 100644 --- a/usr.bin/telnet/authenc.c +++ b/usr.bin/telnet/authenc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authenc.c,v 1.3 1998/03/12 04:57:27 art Exp $ */ +/* $OpenBSD: authenc.c,v 1.4 2001/05/25 10:24:25 hin Exp $ */ /* $NetBSD: authenc.c,v 1.5 1996/02/28 21:03:52 thorpej Exp $ */ /*- @@ -39,7 +39,7 @@ #if defined(AUTHENTICATION) || defined(ENCRYPTION) int -net_write(str, len) +telnet_net_write(str, len) unsigned char *str; int len; { @@ -71,7 +71,7 @@ telnet_spin() char * telnet_getenv(val) - char *val; + const char *val; { return((char *)env_getvalue((unsigned char *)val)); } |