Change the input type to be a char *, which is what auth_onoff wants anyway
authorTheodore Tso <tytso@mit.edu>
Tue, 8 Nov 1994 03:42:10 +0000 (03:42 +0000)
committerTheodore Tso <tytso@mit.edu>
Tue, 8 Nov 1994 03:42:10 +0000 (03:42 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4637 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/telnet/libtelnet/ChangeLog
src/appl/telnet/libtelnet/auth.c

index f1cd71705b999e45255a911e63275d0649200764..6a71f9416efce1ebbb2c14e646b38457642307c0 100644 (file)
@@ -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
index d1aaa62e468ab90c5e5a0608fab83ba900edf3a2..60f5ed6bef164e1c76f67a6bc23dbb830a717d57 100644 (file)
@@ -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));
 }