From: Theodore Tso Date: Wed, 15 Jun 1994 04:53:46 +0000 (+0000) Subject: Added missing indirection. This was causing krb5_kt_next_entry to fail... X-Git-Tag: krb5-1.0-beta4~59 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d5183e95e1221dab1e9d02af6cd0038827e08cf3;p=krb5.git Added missing indirection. This was causing krb5_kt_next_entry to fail... (Fortunately nothing except for the GSSAPI code used it!) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3796 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/krb5/keytab/file/ktf_next.c b/src/lib/krb5/keytab/file/ktf_next.c index 80edf09a4..8d37f0a4f 100644 --- a/src/lib/krb5/keytab/file/ktf_next.c +++ b/src/lib/krb5/keytab/file/ktf_next.c @@ -41,7 +41,7 @@ krb5_keytab id; krb5_keytab_entry *entry; krb5_kt_cursor *cursor; { - long *fileoff = (long *)cursor; + long *fileoff = (long *)*cursor; krb5_keytab_entry *cur_entry; krb5_error_code kerror;