summaryrefslogtreecommitdiffstats
path: root/source/client/clitar.c
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@samba.org>1998-09-26 00:41:20 +0000
committerRichard Sharpe <sharpe@samba.org>1998-09-26 00:41:20 +0000
commitb46f1024c939ee9ecb8deb9c844acbd4b5f109c6 (patch)
treec41c9fa1735e296e75123fbbaa610d7b6fbe755c /source/client/clitar.c
parente8be306f23963ac00b1a383ebe0cc1421529fb02 (diff)
downloadsamba-b46f1024c939ee9ecb8deb9c844acbd4b5f109c6.tar.gz
samba-b46f1024c939ee9ecb8deb9c844acbd4b5f109c6.tar.xz
samba-b46f1024c939ee9ecb8deb9c844acbd4b5f109c6.zip
Small update to clitar.c to omit warnings about servers not
letting us change the date unless tar_real_noisy is True. Also updated a few places where variables are declared but not set.
Diffstat (limited to 'source/client/clitar.c')
-rw-r--r--source/client/clitar.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/source/client/clitar.c b/source/client/clitar.c
index 4d7a2cf043b..afcd4b9f1d6 100644
--- a/source/client/clitar.c
+++ b/source/client/clitar.c
@@ -106,7 +106,7 @@ BOOL tar_system=True;
BOOL tar_hidden=True;
/* Be noisy - make a catalogue */
BOOL tar_noisy=True;
-BOOL tar_real_noisy=True;
+BOOL tar_real_noisy=False; /* Don't want to be really noisy by default */
char tar_type='\0';
static char **cliplist=NULL;
@@ -1723,9 +1723,10 @@ static int get_file(file_info2 finfo, char * inbuf, char * outbuf)
if (!do_setrtime(finfo.name, finfo.mtime, True)) {
- DEBUG(0, ("Could not set time on file: %s\n", finfo.name));
- /*return(False); */ /* Ignore, as Win95 does not allow changes */
-
+ if (tar_real_noisy) {
+ DEBUG(0, ("Could not set time on file: %s\n", finfo.name));
+ /*return(False); */ /* Ignore, as Win95 does not allow changes */
+ }
}
ntarf++;