svn commit: samba r11839 - in branches/SAMBA_3_0/source/client: .

jra at samba.org jra at samba.org
Tue Nov 22 05:21:27 GMT 2005


Author: jra
Date: 2005-11-22 05:21:26 +0000 (Tue, 22 Nov 2005)
New Revision: 11839

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

Log:
Info level 0x101 is really a protocol NT level.
Fix bug #3274 from Guenter Kukkukk <guenter.kukkukk at kukkukk.com>
Jeremy.

Modified:
   branches/SAMBA_3_0/source/client/client.c


Changeset:
Modified: branches/SAMBA_3_0/source/client/client.c
===================================================================
--- branches/SAMBA_3_0/source/client/client.c	2005-11-22 03:21:42 UTC (rev 11838)
+++ branches/SAMBA_3_0/source/client/client.c	2005-11-22 05:21:26 UTC (rev 11839)
@@ -291,7 +291,7 @@
 	/* Use a trans2_qpathinfo to test directories for modern servers.
 	   Except Win9x doesn't support the qpathinfo_basic() call..... */ 
 	
-	if ( targetcli->protocol >= PROTOCOL_LANMAN2 && !targetcli->win95 ) {
+	if ( targetcli->protocol >  PROTOCOL_LANMAN2 && !targetcli->win95 ) {
 		if ( !cli_qpathinfo_basic( targetcli, targetpath, &sbuf, &attributes ) ) {
 			d_printf("cd %s: %s\n", dname, cli_errstr(targetcli));
 			pstrcpy(cur_dir,saved_dir);



More information about the samba-cvs mailing list