* stable-2.02 - fsadm: fix bash artihmetic
@ 2020-10-25 20:46 Zdenek Kabelac
0 siblings, 0 replies; only message in thread
From: Zdenek Kabelac @ 2020-10-25 20:46 UTC (permalink / raw)
To: lvm-devel
Gitweb: https://sourceware.org/git/?p=lvm2.git;a=commitdiff;h=50ac89448fef4fc223e52f5a843b0709111006cb
Commit: 50ac89448fef4fc223e52f5a843b0709111006cb
Parent: a12574303d282779327bc93283edc72fd1b0772e
Author: Zdenek Kabelac <zkabelac@redhat.com>
AuthorDate: Sun Oct 25 21:44:36 2020 +0100
Committer: Zdenek Kabelac <zkabelac@redhat.com>
CommitterDate: Sun Oct 25 21:45:49 2020 +0100
fsadm: fix bash artihmetic
These shell vars needs to be without "".
---
scripts/fsadm.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/fsadm.sh b/scripts/fsadm.sh
index e20401be1..9b95d318d 100755
--- a/scripts/fsadm.sh
+++ b/scripts/fsadm.sh
@@ -383,7 +383,7 @@ detect_device_size() {
test -n "$DEVSIZE" || error "Cannot read size of device \"$VOLUME\"."
SSSIZE=$("$BLOCKDEV" --getss "$VOLUME" || true)
test -n "$SSSIZE" || error "Cannot read sector size of device \"$VOLUME\"."
- DEVSIZE=$(("$DEVSIZE" * "$SSSIZE"))
+ DEVSIZE=$(( $DEVSIZE * $SSSIZE ))
fi
}
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2020-10-25 20:46 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-25 20:46 stable-2.02 - fsadm: fix bash artihmetic Zdenek Kabelac
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.