summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Terpstra <jht@samba.org>1997-10-07 16:01:08 +0000
committerJohn Terpstra <jht@samba.org>1997-10-07 16:01:08 +0000
commit67c1e87e8fda724da6dd3663641639167dd33a16 (patch)
tree440cbd93a1c4e48fc2c8ea1b3b25096edd847ab6
parentb37e21273e81b875876e8e8ddf6804714044ffd8 (diff)
downloadsamba-67c1e87e8fda724da6dd3663641639167dd33a16.tar.gz
samba-67c1e87e8fda724da6dd3663641639167dd33a16.tar.xz
samba-67c1e87e8fda724da6dd3663641639167dd33a16.zip
JHT ==> Fixing blocksize argument. Patch by: Llyod Whiteman
<lwhitman@stm2.nrl.navy.mil>
-rw-r--r--source/script/smbtar2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/script/smbtar b/source/script/smbtar
index a947476dc6b..dcf01edb208 100644
--- a/source/script/smbtar
+++ b/source/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"