From 11ce0f4d2d493702386c0bd49c8e2dd2aad84d56 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 20 Aug 2001 05:15:26 +0000 Subject: a bunch of fixes from the sflight to seattle in particular: - fixed NT status code for a bunch of ops - fixed handling of protocol levels in ms_fnmatch (This used to be commit 3eba9606f71f90bfd9820af26f8676277ed22390) --- source3/client/client.c | 2 +- source3/client/clitar.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) (limited to 'source3/client') diff --git a/source3/client/client.c b/source3/client/client.c index f3cc28cc607..29e23654fb0 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -1196,7 +1196,7 @@ static int file_find(struct file_list **list, const char *directory, } isdir = False; - if (!match || !ms_fnmatch(expression, dname)) { + if (!match || !gen_fnmatch(expression, dname)) { if (recurse) { ret = stat(path, &statbuf); if (ret == 0) { diff --git a/source3/client/clitar.c b/source3/client/clitar.c index 3ae4cafc180..8ce73f66455 100644 --- a/source3/client/clitar.c +++ b/source3/client/clitar.c @@ -121,7 +121,6 @@ extern int max_xmit; extern pstring cur_dir; extern int get_total_time_ms; extern int get_total_size; -extern int Protocol; int blocksize=20; int tarhandle; -- cgit