From 5e59a36beb7d200fc284d28812baa7e46adeced1 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 1 Aug 2011 17:01:42 +0200 Subject: s3:client: make use of cli_state_protocol() metze --- source3/client/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/client/client.c') diff --git a/source3/client/client.c b/source3/client/client.c index 44a151e78f..110614ecd2 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -426,7 +426,7 @@ static int do_cd(const char *new_dir) /* 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 (cli_state_protocol(targetcli) > PROTOCOL_LANMAN2 && !targetcli->win95) { status = cli_qpathinfo_basic(targetcli, targetpath, &sbuf, &attributes); -- cgit