summaryrefslogtreecommitdiffstats
path: root/src/lib/krb5
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2010-05-28 14:38:37 +0000
committerGreg Hudson <ghudson@mit.edu>2010-05-28 14:38:37 +0000
commit5c9632739be78a4f000692c43eee39196754b61f (patch)
treededed01523c2f8408f51a33179a34f9ccf920368 /src/lib/krb5
parent1a7a7b2cc27fc1b71e9def052a996135c6317653 (diff)
downloadkrb5-5c9632739be78a4f000692c43eee39196754b61f.tar.gz
krb5-5c9632739be78a4f000692c43eee39196754b61f.tar.xz
krb5-5c9632739be78a4f000692c43eee39196754b61f.zip
From Luke: make copies of S4U2Proxy authdata modules work when there
is no S4U2Proxy authdata. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@24107 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/krb5')
-rw-r--r--src/lib/krb5/krb/s4u_authdata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/krb5/krb/s4u_authdata.c b/src/lib/krb5/krb/s4u_authdata.c
index 3c9ccb036..1c6194350 100644
--- a/src/lib/krb5/krb/s4u_authdata.c
+++ b/src/lib/krb5/krb/s4u_authdata.c
@@ -572,7 +572,7 @@ s4u2proxy_copy(krb5_context kcontext,
code = s4u2proxy_export_internal(kcontext, context,
plugin_context, request_context,
FALSE, (void **)&dstctx->delegated);
- if (code != 0)
+ if (code != 0 && code != ENOENT)
return code;
dstctx->count = srcctx->count;