diff options
author | Günther Deschner <gd@samba.org> | 2007-08-20 12:29:07 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:30:07 -0500 |
commit | 42bb05074a9b9fac52635cd6242e5a915a85f724 (patch) | |
tree | 108e8f37513aa8a8c0b072e29c49ac8508bb5952 | |
parent | 18e6f9c6aae5c63596a8d6d96bac1942290513fe (diff) | |
download | samba-42bb05074a9b9fac52635cd6242e5a915a85f724.tar.gz samba-42bb05074a9b9fac52635cd6242e5a915a85f724.tar.bz2 samba-42bb05074a9b9fac52635cd6242e5a915a85f724.zip |
r24578: Fix build warning.
Guenther
(This used to be commit 27ecb0df792b54d167a829f23bd82c27e0731f0d)
-rw-r--r-- | source3/nsswitch/winbindd_cred_cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_cred_cache.c b/source3/nsswitch/winbindd_cred_cache.c index 13decca8ca..8b12c459d6 100644 --- a/source3/nsswitch/winbindd_cred_cache.c +++ b/source3/nsswitch/winbindd_cred_cache.c @@ -427,7 +427,7 @@ NTSTATUS add_ccache_to_list(const char *princ_name, NTSTATUS remove_ccache(const char *username) { struct WINBINDD_CCACHE_ENTRY *entry = get_ccache_by_username(username); - NTSTATUS status; + NTSTATUS status = NT_STATUS_OK; #ifdef HAVE_KRB5 krb5_error_code ret; #endif |