summaryrefslogtreecommitdiffstats
path: root/source/client/client.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2005-11-22 05:21:26 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:05:29 -0500
commite4b3b70ef1c0fea3252b73c55ea3e9cad7229afd (patch)
tree794fe2ab17331b5d00a32b92284e9921a5e7fddf /source/client/client.c
parentd381c125b0ffc269fd8671a855c9b899966a2320 (diff)
downloadsamba-e4b3b70ef1c0fea3252b73c55ea3e9cad7229afd.tar.gz
samba-e4b3b70ef1c0fea3252b73c55ea3e9cad7229afd.tar.xz
samba-e4b3b70ef1c0fea3252b73c55ea3e9cad7229afd.zip
r11839: Info level 0x101 is really a protocol NT level.
Fix bug #3274 from Guenter Kukkukk <guenter.kukkukk@kukkukk.com> Jeremy.
Diffstat (limited to 'source/client/client.c')
-rw-r--r--source/client/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/client/client.c b/source/client/client.c
index 697b4e95698..47a45b8a53b 100644
--- a/source/client/client.c
+++ b/source/client/client.c
@@ -291,7 +291,7 @@ static int do_cd(char *newdir)
/* 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);