From 2c703ec720ba6890b609342774260043ff5a331f Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 3 Jul 2008 12:01:36 +0200 Subject: libnetjoin: fix Bug #5570. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thanks to Atte Peltomäki. Guenther (This used to be commit 144d374ad9dd981430a82369ceaa2783e6dae90a) --- source3/libnet/libnet_join.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/libnet') diff --git a/source3/libnet/libnet_join.c b/source3/libnet/libnet_join.c index 4a2a658497..6b6491b5b8 100644 --- a/source3/libnet/libnet_join.c +++ b/source3/libnet/libnet_join.c @@ -503,7 +503,7 @@ static bool libnet_join_create_keytab(TALLOC_CTX *mem_ctx, return true; } - if (!ads_keytab_create_default(r->in.ads)) { + if (ads_keytab_create_default(r->in.ads) != 0) { return false; } -- cgit