diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-02-14 17:26:29 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-02-14 17:26:29 +0000 |
commit | b37a327a1a8441f85821e0798c0875ae1ed81a75 (patch) | |
tree | 9fcc3b6f63acee5d3c4d9a05c7ebc51bb2cecbcc /kerberos.c | |
parent | 1f888b7ff4ae5aa6a62095a12b255e3bf574744b (diff) | |
download | fetchmail-b37a327a1a8441f85821e0798c0875ae1ed81a75.tar.gz fetchmail-b37a327a1a8441f85821e0798c0875ae1ed81a75.tar.bz2 fetchmail-b37a327a1a8441f85821e0798c0875ae1ed81a75.zip |
Fix bad argument type.
svn path=/trunk/; revision=3098
Diffstat (limited to 'kerberos.c')
-rw-r--r-- | kerberos.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -134,7 +134,7 @@ int do_rfc1731(int sock, char *command, char *truename) memcpy(session, credentials.session, sizeof session); memset(&credentials, 0, sizeof credentials); - des_key_sched(&session, schedule); + des_key_sched(session, schedule); result = krb_get_tf_fullname(TKT_FILE, tktuser, tktinst, tktrealm); if (result) { |