From: Theodore Tso Date: Tue, 8 Nov 1994 03:42:10 +0000 (+0000) Subject: Change the input type to be a char *, which is what auth_onoff wants anyway X-Git-Tag: krb5-1.0-beta5~1011 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c727a35124808dfa8435126cc50d241a416a0043;p=krb5.git Change the input type to be a char *, which is what auth_onoff wants anyway git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4637 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/appl/telnet/libtelnet/ChangeLog b/src/appl/telnet/libtelnet/ChangeLog index f1cd71705..6a71f9416 100644 --- a/src/appl/telnet/libtelnet/ChangeLog +++ b/src/appl/telnet/libtelnet/ChangeLog @@ -1,3 +1,8 @@ +Mon Nov 7 22:36:20 1994 Theodore Y. Ts'o (tytso@dcl) + + * auth.c (auth_enable, auth_disable): Change the input type to be + a char *, which is what auth_onoff wants anyway. + Mon Aug 8 22:16:54 1994 Theodore Y. Ts'o (tytso at tsx-11) * kerberos5.c (kerberos5_send): Whoops, mispelled diff --git a/src/appl/telnet/libtelnet/auth.c b/src/appl/telnet/libtelnet/auth.c index d1aaa62e4..60f5ed6be 100644 --- a/src/appl/telnet/libtelnet/auth.c +++ b/src/appl/telnet/libtelnet/auth.c @@ -260,14 +260,14 @@ getauthmask(type, maskp) int auth_enable(type) - int type; + char * type; { return(auth_onoff(type, 1)); } int auth_disable(type) - int type; + char * type; { return(auth_onoff(type, 0)); }