diff options
author | Bill Nottingham <notting@redhat.com> | 2011-03-15 12:37:43 -0400 |
---|---|---|
committer | Harald Hoyer <harald@redhat.com> | 2011-04-19 16:24:40 +0200 |
commit | c32b123a33e430bc0f02e4f921ab6184734bbdc5 (patch) | |
tree | 72cbd010bcf3d9afac5f5375e4c7bd742bfdeff1 /rc.d/init.d | |
parent | c0b0f528c986558a14225b07c73d4d881278f98d (diff) | |
download | initscripts-c32b123a33e430bc0f02e4f921ab6184734bbdc5.tar initscripts-c32b123a33e430bc0f02e4f921ab6184734bbdc5.tar.gz initscripts-c32b123a33e430bc0f02e4f921ab6184734bbdc5.tar.bz2 initscripts-c32b123a33e430bc0f02e4f921ab6184734bbdc5.tar.xz initscripts-c32b123a33e430bc0f02e4f921ab6184734bbdc5.zip |
Fix mishandled argument to fstab-decode. (#685137)
Diffstat (limited to 'rc.d/init.d')
-rwxr-xr-x | rc.d/init.d/functions | 2 |
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 |