aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2011-03-15 12:37:43 -0400
committerHarald Hoyer <harald@redhat.com>2011-04-19 16:24:40 +0200
commitc32b123a33e430bc0f02e4f921ab6184734bbdc5 (patch)
tree72cbd010bcf3d9afac5f5375e4c7bd742bfdeff1
parentc0b0f528c986558a14225b07c73d4d881278f98d (diff)
downloadinitscripts-c32b123a33e430bc0f02e4f921ab6184734bbdc5.tar
initscripts-c32b123a33e430bc0f02e4f921ab6184734bbdc5.tar.gz
initscripts-c32b123a33e430bc0f02e4f921ab6184734bbdc5.tar.bz2
initscripts-c32b123a33e430bc0f02e4f921ab6184734bbdc5.tar.xz
initscripts-c32b123a33e430bc0f02e4f921ab6184734bbdc5.zip
Fix mishandled argument to fstab-decode. (#685137)
-rwxr-xr-xrc.d/init.d/functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions
index 42810bc6..c1d0e073 100755
--- a/rc.d/init.d/functions
+++ b/rc.d/init.d/functions
@@ -83,7 +83,7 @@ __umount_loop() {
remaining=$(LC_ALL=C awk "/^#/ {next} $1" "$2" | sort -r)
while [ -n "$remaining" -a "$retry" -gt 0 ]; do
if [ "$retry" -eq 3 ]; then
- action "$3" fstab-decode umount '' $remaining
+ action "$3" fstab-decode umount $remaining
else
action "$4" fstab-decode umount $5 $remaining
fi