svn commit: lorikeet r530 - in trunk/mod_ntlm_winbind: .

jerry at samba.org jerry at samba.org
Sun Apr 23 20:51:32 GMT 2006


Author: jerry
Date: 2006-04-23 20:51:31 +0000 (Sun, 23 Apr 2006)
New Revision: 530

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

Log:
fix small bug in the negotiate string that caused the client to always select the NTLM method.  Have successfully testing Krb5 authentication in IE now
Modified:
   trunk/mod_ntlm_winbind/mod_ntlm_winbind.c


Changeset:
Modified: trunk/mod_ntlm_winbind/mod_ntlm_winbind.c
===================================================================
--- trunk/mod_ntlm_winbind/mod_ntlm_winbind.c	2006-04-20 22:56:51 UTC (rev 529)
+++ trunk/mod_ntlm_winbind/mod_ntlm_winbind.c	2006-04-23 20:51:31 UTC (rev 530)
@@ -361,7 +361,7 @@
 
     /* MSIE will simply reply to the first, not strongest, protocol listed */
     if (crec->negotiate_on) {
-        line = apr_pstrcat(r->pool, NEGOTIATE_AUTH_NAME,
+        line = apr_pstrcat(r->pool, NEGOTIATE_AUTH_NAME, " ",
                            negotiate_auth_line, NULL);
         apr_table_add(r->err_headers_out,
                       r->proxyreq ? "Proxy-Authenticate" : "WWW-Authenticate",



More information about the samba-cvs mailing list