svn commit: lorikeet r785 - in trunk/mod_auth_ntlm_winbind: .

jerry at samba.org jerry at samba.org
Thu Nov 8 15:47:58 GMT 2007


Author: jerry
Date: 2007-11-08 15:47:58 +0000 (Thu, 08 Nov 2007)
New Revision: 785

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=lorikeet&rev=785

Log:
Fix a typo in strcmp usage in process_msg().

Patch from Dmitry Butskoy <buc at odusz.so-cdu.ru>.


Modified:
   trunk/mod_auth_ntlm_winbind/mod_auth_ntlm_winbind.c


Changeset:
Modified: trunk/mod_auth_ntlm_winbind/mod_auth_ntlm_winbind.c
===================================================================
--- trunk/mod_auth_ntlm_winbind/mod_auth_ntlm_winbind.c	2007-11-08 15:27:36 UTC (rev 784)
+++ trunk/mod_auth_ntlm_winbind/mod_auth_ntlm_winbind.c	2007-11-08 15:47:58 UTC (rev 785)
@@ -839,7 +839,7 @@
             r->connection->ap_auth_type = ctxt->connected_user_authenticated->auth_type;
 #endif
 
-            if (!strcmp("*", childarg)) {
+            if (strcmp("*", childarg) != 0) {
                 /* Send last leg (possible mutual authentication token) */
                 apr_table_setn(r->headers_out,
                               (PROXYREQ_PROXY == r->proxyreq) ? "Proxy-Authenticate" : "WWW-Authenticate",



More information about the samba-cvs mailing list