Use patch from Debian Bug#413403 to fix problems with bash in mount.fuse
authorMiklos Szeredi <miklos@szeredi.hu>
Wed, 18 Apr 2007 14:13:59 +0000 (14:13 +0000)
committerMiklos Szeredi <miklos@szeredi.hu>
Wed, 18 Apr 2007 14:13:59 +0000 (14:13 +0000)
ChangeLog
util/mount.fuse

index a1d24a9ec053fdc805d00ab8c0ac30176ee4729b..a2303731171452e42852076444cd477de200a3ca 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-04-18  Miklos Szeredi <miklos@szeredi.hu>
+
+       * Use patch from Debian Bug#413403 to fix problems with bash
+
 2007-04-15  Miklos Szeredi <miklos@szeredi.hu>
 
        * Add -lulockmgr to compilation comment in fusexmp_fh.c
index e8febfef5e536019c23e07b583deb33f5eb7b0c2..e8051db44551dad0eb6286f04781a6717e67847d 100644 (file)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 #
 # FUSE mount helper
 # Petr Klima <qaxi@seznam.cz>
@@ -20,8 +20,8 @@ usage: ${PRGNAME} fusefs_type#[mountpath] mountpoint [FUSE options]
        example: ${PRGNAME} sshfs#root@tux:/ /mnt/tuxssh -o rw
 "
 
-function die {
-       echo -e "$PRGNAME# $1" >&2
+die {
+       echo "$PRGNAME# $1" >&2
        [ -z "$2" ] && exit 128
        exit "$2"
 }