summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-11-26 03:21:21 -0500
committerMike Frysinger <vapier@gentoo.org>2011-11-26 03:21:21 -0500
commit3baca9a35c4f6e2bd910d5bc54c0008c13b0501a (patch)
treed68ee76b274ff10ea18369defd529417ea772921
parent467f91d870926f7a0c5d47f5bfc1e8e596dbd669 (diff)
downloadopenrc-3baca9a35c4f6e2bd910d5bc54c0008c13b0501a.tar.gz
openrc-3baca9a35c4f6e2bd910d5bc54c0008c13b0501a.tar.bz2
openrc-3baca9a35c4f6e2bd910d5bc54c0008c13b0501a.tar.xz
fsck: fix typo in fsck mount point support
Previous commit e3b39a677b535bc2 missed adding a "[" to one of the tests. Reported-by: Torsten Veller <tove@gentoo.org> x-Gentoo-Bug: 391941 x-Gentoo-Bug-URL: http://bugs.gentoo.org/391941 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r--init.d/fsck.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.d/fsck.in b/init.d/fsck.in
index 03b2939..049caad 100644
--- a/init.d/fsck.in
+++ b/init.d/fsck.in
@@ -48,7 +48,7 @@ start()
if [ -n "$fsck_passno" ]; then
check_extra="[passno $fsck_passno] $check_extra"
- if -n "$fsck_mnt" ]; then
+ if [ -n "$fsck_mnt" ]; then
eerror "Only 1 of fsck_passno and fsck_mnt must be set!"
return 1
fi