From fd92db55eb613c5189f1a4aed719f77d47b80d68 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 9 Jan 2010 18:43:38 +0100 Subject: s3: Remove a pointless "else" branch from add_ccache_to_list() --- source3/winbindd/winbindd_cred_cache.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'source3') diff --git a/source3/winbindd/winbindd_cred_cache.c b/source3/winbindd/winbindd_cred_cache.c index e63e73221e..01b77f0a83 100644 --- a/source3/winbindd/winbindd_cred_cache.c +++ b/source3/winbindd/winbindd_cred_cache.c @@ -523,11 +523,10 @@ NTSTATUS add_ccache_to_list(const char *princ_name, "user krb5 ccache %s with %s\n", ccname, error_message(ret))); return krb5_to_nt_status(ret); - } else { - DEBUG(10, ("add_ccache_to_list: successfully destroyed " - "krb5 ccache %s for user %s\n", ccname, - username)); } + DEBUG(10, ("add_ccache_to_list: successfully destroyed " + "krb5 ccache %s for user %s\n", ccname, + username)); } #endif -- cgit