From f488e98136b09d1bd50421ec529ca7b51d53d199 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 19 Nov 2009 17:56:46 +0100 Subject: [PATCH] s3: Do not kill the whole smb session if a machine pwchange failed --- source3/winbindd/winbindd_dual.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/winbindd/winbindd_dual.c b/source3/winbindd/winbindd_dual.c index a832451e084..07a49e0e088 100644 --- a/source3/winbindd/winbindd_dual.c +++ b/source3/winbindd/winbindd_dual.c @@ -1106,7 +1106,7 @@ static void machine_password_change_handler(struct event_context *ctx, "password was changed and we didn't know it. " "Killing connections to domain %s\n", child->domain->name)); - invalidate_cm_connection(&child->domain->conn); + TALLOC_FREE(child->domain->conn.netlogon_pipe); } } else { DEBUG(10,("machine_password_change_handler: " -- 2.34.1