diff options
author | John Terpstra <jht@samba.org> | 1997-10-07 16:01:08 +0000 |
---|---|---|
committer | John Terpstra <jht@samba.org> | 1997-10-07 16:01:08 +0000 |
commit | a9e1efc1adb9a1cd85222f992c9ea03b56e74125 (patch) | |
tree | 9f6735daf1e7bc043f9c69e169c65dc838138eb7 /source3 | |
parent | a3b7bdd7b997fd6d41b8b96676eb58471112d931 (diff) | |
download | samba-a9e1efc1adb9a1cd85222f992c9ea03b56e74125.tar.gz samba-a9e1efc1adb9a1cd85222f992c9ea03b56e74125.tar.bz2 samba-a9e1efc1adb9a1cd85222f992c9ea03b56e74125.zip |
JHT ==> Fixing blocksize argument. Patch by: Llyod Whiteman
<lwhitman@stm2.nrl.navy.mil>
(This used to be commit 67c1e87e8fda724da6dd3663641639167dd33a16)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/script/smbtar | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/smbtar b/source3/script/smbtar index a947476dc6..dcf01edb20 100644 --- a/source3/script/smbtar +++ b/source3/script/smbtar @@ -88,7 +88,7 @@ while getopts rivl:b:d:N:s:p:x:u:Xt: c; do server="$OPTARG" ;; b) # specify [b]locksize - blocksize="blocksize $OPTARG" + blocksize="$OPTARG" case "$OPTARG" in [0-9]*) ;; *) echo >&2 "$0: Error, block size not numeric: -b $OPTARG" |