From 217302777ab511c28b45a333ac61e36552f8937a Mon Sep 17 00:00:00 2001 From: Alexandra Ellwood Date: Mon, 10 Mar 2008 19:15:39 +0000 Subject: cci_cred_union_compare_to_credentials_union doesn't work for v5 creds Fixed a bug in cci_cred_union_compare_to_credentials_union where it always returned an error when comparing v5 creds. ticket: new git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20261 dc483132-0cff-0310-8789-dd5450dbe970 --- src/ccapi/common/cci_cred_union.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ccapi/common') diff --git a/src/ccapi/common/cci_cred_union.c b/src/ccapi/common/cci_cred_union.c index ae99f88b89..e8e230d49d 100644 --- a/src/ccapi/common/cci_cred_union.c +++ b/src/ccapi/common/cci_cred_union.c @@ -1102,7 +1102,7 @@ cc_uint32 cci_cred_union_compare_to_credentials_union (const cred_union !strcmp (old_creds_v5->client, new_creds_v5->client) && !strcmp (old_creds_v5->server, new_creds_v5->server) && (old_creds_v5->starttime == new_creds_v5->starttime)) { - return 1; + equal = 1; } } } -- cgit