From c36d7e7fef9590e00bfdc083dfcbbc66d17036af Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Wed, 18 Apr 2007 14:13:59 +0000 Subject: [PATCH] Use patch from Debian Bug#413403 to fix problems with bash in mount.fuse --- ChangeLog | 4 ++++ util/mount.fuse | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index a1d24a9..a230373 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-04-18 Miklos Szeredi + + * Use patch from Debian Bug#413403 to fix problems with bash + 2007-04-15 Miklos Szeredi * Add -lulockmgr to compilation comment in fusexmp_fh.c diff --git a/util/mount.fuse b/util/mount.fuse index e8febfe..e8051db 100644 --- a/util/mount.fuse +++ b/util/mount.fuse @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # # FUSE mount helper # Petr Klima @@ -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" } -- 2.30.2