summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAron Griffis <agriffis@gentoo.org>2004-03-19 03:39:09 +0000
committerAron Griffis <agriffis@gentoo.org>2004-03-19 03:39:09 +0000
commit21a215bc0dbc670795ffc557e50268fb1940780a (patch)
tree90ac48fd93841af9e9496487e9c1f7ca8048ea7e /net-www/mozilla/files
parentadded a mask for the latest afterstep beta (diff)
downloadhistorical-21a215bc0dbc670795ffc557e50268fb1940780a.tar.gz
historical-21a215bc0dbc670795ffc557e50268fb1940780a.tar.bz2
historical-21a215bc0dbc670795ffc557e50268fb1940780a.zip
Fix bug 25556 by using "$@" instead of $* in mozilla.sh, thanks to Zhen Lin who reported this on 2004-07-30
Diffstat (limited to 'net-www/mozilla/files')
-rw-r--r--net-www/mozilla/files/mozilla.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/net-www/mozilla/files/mozilla.sh b/net-www/mozilla/files/mozilla.sh
index 29c7a60b92f8..55a5b5f848f0 100644
--- a/net-www/mozilla/files/mozilla.sh
+++ b/net-www/mozilla/files/mozilla.sh
@@ -192,7 +192,7 @@ function open_mail() {
exec $MOZ_CLIENT_PROGRAM 'xfeDoCommand(openInbox)' \
2>/dev/null >/dev/null
else
- exec $MOZ_PROGRAM $MOZ_LANG $*
+ exec $MOZ_PROGRAM $MOZ_LANG "$@"
fi
}
@@ -201,7 +201,7 @@ function open_compose() {
exec $MOZ_CLIENT_PROGRAM 'xfeDoCommand(composeMessage)' \
2>/dev/null >/dev/null
else
- exec $MOZ_PROGRAM $MOZ_LANG $*
+ exec $MOZ_PROGRAM $MOZ_LANG "$@"
fi
}