The branch, v3-4-test has been updated
via 11b3f0d8deb629489de4de29cedf518adc86d196 (commit)
from c96d0ffd944f536a1228812c761ba4fb4313ee05 (commit)
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-4-test
- Log -----------------------------------------------------------------
commit 11b3f0d8deb629489de4de29cedf518adc86d196
Author: Björn Jacke <[email protected]>
Date: Mon Mar 23 13:02:57 2009 +0100
Ñ3/winbind_pam: fix gcc 4.4 compile warning
(cherry picked from commit f4aec7b5907065a2f48d1b19065c6673aff6a190)
-----------------------------------------------------------------------
Summary of changes:
source3/winbindd/winbindd_pam.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source3/winbindd/winbindd_pam.c b/source3/winbindd/winbindd_pam.c
index 15d1b7e..54bcac2 100644
--- a/source3/winbindd/winbindd_pam.c
+++ b/source3/winbindd/winbindd_pam.c
@@ -1854,7 +1854,7 @@ enum winbindd_result winbindd_dual_pam_auth_crap(struct
winbindd_domain *domain,
if (state->request.data.auth_crap.lm_resp_len >
sizeof(state->request.data.auth_crap.lm_resp)
|| state->request.data.auth_crap.nt_resp_len >
sizeof(state->request.data.auth_crap.nt_resp)) {
- if (!state->request.flags & WBFLAG_BIG_NTLMV2_BLOB ||
+ if (!(state->request.flags & WBFLAG_BIG_NTLMV2_BLOB) ||
state->request.extra_len !=
state->request.data.auth_crap.nt_resp_len) {
DEBUG(0, ("winbindd_pam_auth_crap: invalid password
length %u/%u\n",
state->request.data.auth_crap.lm_resp_len,
--
Samba Shared Repository