diff options
Diffstat (limited to 'source3/nsswitch/winbindd_cred_cache.c')
-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 f5003ac8c6..688c8828d3 100644 --- a/source3/nsswitch/winbindd_cred_cache.c +++ b/source3/nsswitch/winbindd_cred_cache.c @@ -249,7 +249,7 @@ NTSTATUS add_ccache_to_list(const char *princ_name, #ifdef HAVE_MLOCK size_t len = strlen(pass)+1; - new_entry->pass = TALLOC_ZERO(mem_ctx, len); + new_entry->pass = (char *)TALLOC_ZERO(mem_ctx, len); NT_STATUS_HAVE_NO_MEMORY(new_entry->pass); #ifdef DEBUG_PASSWORD |