diff options
| author | John Kohl <jtkohl@mit.edu> | 1990-04-06 15:58:53 +0000 |
|---|---|---|
| committer | John Kohl <jtkohl@mit.edu> | 1990-04-06 15:58:53 +0000 |
| commit | b21f83df19e3740a6c095225e07730f72c15c06e (patch) | |
| tree | ab5973c4b0bbe6650663e9a2af8b5bfeada19f48 /src/lib | |
| parent | c9c21d1b5cffcaff382f3a8efebcfdb300b06519 (diff) | |
| download | krb5-b21f83df19e3740a6c095225e07730f72c15c06e.tar.gz krb5-b21f83df19e3740a6c095225e07730f72c15c06e.tar.xz krb5-b21f83df19e3740a6c095225e07730f72c15c06e.zip | |
need &reply, not reply
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@474 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/krb5/krb/get_in_tkt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/krb5/krb/get_in_tkt.c b/src/lib/krb5/krb/get_in_tkt.c index f8722e17d..787c93ab2 100644 --- a/src/lib/krb5/krb/get_in_tkt.c +++ b/src/lib/krb5/krb/get_in_tkt.c @@ -114,8 +114,8 @@ OLDDECLARG(krb5_ccache, ccache) /* now decode the reply...could be error or as_rep */ - if (retval = decode_krb5_as_rep(reply, &as_reply)) { - if (decode_krb5_error(reply, &err_reply)) + 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 */ |
