summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog4
-rw-r--r--scripts/local2
2 files changed, 4 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index d413936..be82239 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,7 +2,9 @@ initramfs-tools (0.89) unstable; urgency=low
* initramfs.conf.5: Document ROOT hardcoding.
- -- maximilian attems <maks@debian.org> Wed, 30 May 2007 13:25:36 +0200
+ * scripts/local: Use simpler fstype invocation.
+
+ -- maximilian attems <maks@debian.org> Mon, 11 Jun 2007 00:40:29 +0200
initramfs-tools (0.88) unstable; urgency=low
diff --git a/scripts/local b/scripts/local
index 459ba8d..429d1f6 100644
--- a/scripts/local
+++ b/scripts/local
@@ -12,7 +12,7 @@ get_fstype ()
if [ -x /lib/udev/vol_id ]; then
FSTYPE=$(/lib/udev/vol_id -t "${FS}" 2> /dev/null)
else
- eval $(fstype < "${FS}" 2> /dev/null)
+ eval $(fstype "${FS}" 2> /dev/null)
fi
RET=$?