diff options
author | Jeremy Allison <jra@samba.org> | 2005-11-22 05:21:26 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2005-11-22 05:21:26 +0000 |
commit | 03b65e7748daa83ecaf65966d9a9a30d18508d6f (patch) | |
tree | 794fe2ab17331b5d00a32b92284e9921a5e7fddf /source/client | |
parent | 0fd4a8969f47ecae788fbcc171723c65eae521db (diff) | |
download | samba-03b65e7748daa83ecaf65966d9a9a30d18508d6f.tar.gz samba-03b65e7748daa83ecaf65966d9a9a30d18508d6f.tar.xz samba-03b65e7748daa83ecaf65966d9a9a30d18508d6f.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')
-rw-r--r-- | source/client/client.c | 2 |
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); |