From a414356075ab28259fe4fe534478bc43aa3ce6d9 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 27 Mar 2011 22:06:46 +0200 Subject: [PATCH] s3: Fix Coverity ID 2188: MISSING_BREAK Autobuild-User: Volker Lendecke Autobuild-Date: Sun Mar 27 23:11:10 CEST 2011 on sn-devel-104 --- source3/auth/auth_server.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source3/auth/auth_server.c b/source3/auth/auth_server.c index fc46ce01486..5fee1e48815 100644 --- a/source3/auth/auth_server.c +++ b/source3/auth/auth_server.c @@ -399,6 +399,7 @@ use this machine as the password server.\n")); user_info->password.plaintext, strlen(user_info->password.plaintext), NULL, 0, user_info->mapped.domain_name); + break; /* currently the hash values include a challenge-response as well */ case AUTH_PASSWORD_HASH: @@ -410,6 +411,7 @@ use this machine as the password server.\n")); (char *)user_info->password.response.nt.data, user_info->password.response.nt.length, user_info->mapped.domain_name); + break; default: DEBUG(0,("user_info constructed for user '%s' was invalid - password_state=%u invalid.\n",user_info->mapped.account_name, user_info->password_state)); nt_status = NT_STATUS_INTERNAL_ERROR; -- 2.34.1