summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohn Kohl <jtkohl@mit.edu>1990-03-23 16:36:08 +0000
committerJohn Kohl <jtkohl@mit.edu>1990-03-23 16:36:08 +0000
commitfd9500620df128bc407c315f6637a4bf74b52e7a (patch)
tree6c81cbb865049da325d2b8ac0025cbcfafef210d /src
parent775fa32374804f0f6960e447ef27bc72776e2c52 (diff)
downloadkrb5-fd9500620df128bc407c315f6637a4bf74b52e7a.tar.gz
krb5-fd9500620df128bc407c315f6637a4bf74b52e7a.tar.xz
krb5-fd9500620df128bc407c315f6637a4bf74b52e7a.zip
fix confusion over which packet was which
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@401 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/lib/krb5/krb/get_in_tkt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/krb5/krb/get_in_tkt.c b/src/lib/krb5/krb/get_in_tkt.c
index 91cfd70b1..4d158713d 100644
--- a/src/lib/krb5/krb/get_in_tkt.c
+++ b/src/lib/krb5/krb/get_in_tkt.c
@@ -114,9 +114,9 @@ OLDDECLARG(krb5_ccache, ccache)
/* now decode the reply...could be error or as_rep */
- if (retval = decode_krb5_as_rep(packet, &as_reply)) {
- if (decode_krb5_error(packet, &err_reply))
- return retval; /* some other packet--??? */
+ if (retval = decode_krb5_as_rep(reply, &as_reply)) {
+ if (decode_krb5_error(reply, &err_reply))
+ return retval; /* some other reply--??? */
/* it was an error */
/* XXX check to make sure the timestamps match, etc. */