diff options
Diffstat (limited to 'source/client/clitar.c')
-rw-r--r-- | source/client/clitar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/client/clitar.c b/source/client/clitar.c index 4bb658f9521..335c92eecf1 100644 --- a/source/client/clitar.c +++ b/source/client/clitar.c @@ -1719,7 +1719,7 @@ int tar_parseargs(int argc, char *argv[], char *Optarg, int Optind) SMB_STRUCT_STAT stbuf; extern time_t newer_than; - if (dos_stat(argv[Optind], &stbuf) == 0) { + if (sys_stat(dos_to_unix(argv[Optind],False), &stbuf) == 0) { newer_than = stbuf.st_mtime; DEBUG(1,("Getting files newer than %s", asctime(LocalTime(&newer_than)))); |