samba-2.0.2's tar client prints statistic on stderr by default. Disable

this by addind 'q' to the tar options.
This commit is contained in:
bouyer 1999-02-26 12:16:15 +00:00
parent 2efd2138d3
commit 8b3804a31f
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,17 @@
--- client-src/sendbackup-gnutar.c.old Fri Feb 26 12:02:58 1999
+++ client-src/sendbackup-gnutar.c Fri Feb 26 12:06:59 1999
@@ -300,11 +300,11 @@
}
if (level==0) {
if (no_record)
- taropt = "-Tc";
+ taropt = "-Tqc";
else
- taropt = "-Tca";
+ taropt = "-Tqca";
} else
- taropt = "-Tcg";
+ taropt = "-Tqcg";
dbprintf(("backup from %s, user %s, pass %s\n",
sharename, SAMBA_USER, "XXXXX"));

View file

@ -0,0 +1,17 @@
--- client-src/sendbackup-gnutar.c.old Fri Feb 26 12:02:58 1999
+++ client-src/sendbackup-gnutar.c Fri Feb 26 12:06:59 1999
@@ -300,11 +300,11 @@
}
if (level==0) {
if (no_record)
- taropt = "-Tc";
+ taropt = "-Tqc";
else
- taropt = "-Tca";
+ taropt = "-Tqca";
} else
- taropt = "-Tcg";
+ taropt = "-Tqcg";
dbprintf(("backup from %s, user %s, pass %s\n",
sharename, SAMBA_USER, "XXXXX"));