diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-12-09 17:13:16 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-12-09 17:13:16 +0000 |
commit | c2804524cf5239a10156b0baef3303008379aaa6 (patch) | |
tree | 864900c2d3ba7b82b0dd792f8928bade5bbead38 /package/base-files | |
parent | bede0a2b458154077f37bbadc0e76acb9e7f0149 (diff) | |
download | upstream-c2804524cf5239a10156b0baef3303008379aaa6.tar.gz upstream-c2804524cf5239a10156b0baef3303008379aaa6.tar.bz2 upstream-c2804524cf5239a10156b0baef3303008379aaa6.zip |
add missing argument to debug/mount wrappers (thx, matteo)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18718 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files')
-rwxr-xr-x | package/base-files/files/etc/functions.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/base-files/files/etc/functions.sh b/package/base-files/files/etc/functions.sh index 61c04953d3..fa0ba0427b 100755 --- a/package/base-files/files/etc/functions.sh +++ b/package/base-files/files/etc/functions.sh @@ -4,10 +4,10 @@ debug () { - ${DEBUG:-:} + ${DEBUG:-:} "$@" } mount() { - busybox mount + busybox mount "$@" } # newline |