summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/appl/telnet/libtelnet/ChangeLog5
-rw-r--r--src/appl/telnet/libtelnet/auth.c4
2 files changed, 7 insertions, 2 deletions
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));
}