summaryrefslogtreecommitdiffstats
path: root/src/appl/telnet/telnet/main.c
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>2002-11-15 20:21:35 +0000
committerEzra Peisach <epeisach@mit.edu>2002-11-15 20:21:35 +0000
commitd8ce52e5fb91ad51c4fbe974b7f837498c7e1d92 (patch)
treed3d999054b7afd0ad48ee259d9f405eca4245f95 /src/appl/telnet/telnet/main.c
parenta2dc9d551dc35ad2f38e8ae01ced7b467df304c6 (diff)
downloadkrb5-d8ce52e5fb91ad51c4fbe974b7f837498c7e1d92.tar.gz
krb5-d8ce52e5fb91ad51c4fbe974b7f837498c7e1d92.tar.xz
krb5-d8ce52e5fb91ad51c4fbe974b7f837498c7e1d92.zip
* sys_bsd.c: Moved declaration for susp() to type of file and
provide prototype. * commands.c, externs.h, telnet.c, network.c: Add prototype declaration for command handler table dispatch functions. Make functions called consistant with prototype. Misc unsigned/signed cleanups. * authenc.c, main.c, utilities.c: Signed vs. unsigned cleanup. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15011 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/appl/telnet/telnet/main.c')
-rw-r--r--src/appl/telnet/telnet/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/appl/telnet/telnet/main.c b/src/appl/telnet/telnet/main.c
index f41ce4d27..77832f912 100644
--- a/src/appl/telnet/telnet/main.c
+++ b/src/appl/telnet/telnet/main.c
@@ -238,7 +238,7 @@ main(argc, argv)
#if defined(AUTHENTICATION) && defined(KRB4)
{
extern char *dest_realm, dst_realm_buf[];
- extern int dst_realm_sz;
+ extern unsigned int dst_realm_sz;
dest_realm = dst_realm_buf;
(void)strncpy(dest_realm, optarg, dst_realm_sz);
}