summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/util/sss_krb5.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/util/sss_krb5.c b/src/util/sss_krb5.c
index 828e81b0..55874c80 100644
--- a/src/util/sss_krb5.c
+++ b/src/util/sss_krb5.c
@@ -387,7 +387,7 @@ static bool match_principal(krb5_context ctx,
int mode = MODE_NORMAL;
TALLOC_CTX *tmp_ctx;
- bool ret;
+ bool ret = false;
realm_data = krb5_princ_realm(ctx, principal);
@@ -421,7 +421,6 @@ static bool match_principal(krb5_context ctx,
strncmp(primary, primary_str, primary_str_len) != 0) ||
(mode == MODE_POSTFIX &&
strcmp(primary+len_diff, primary_str) != 0)) {
- ret = false;
goto done;
}
}