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 | 91a8f2334afb39e3d7a639ea0b3aec0bca185603 (patch) | |
tree | 9ce9f24b7aefe22bbcfdc1ea81db77a1b6d62477 /package/base-files | |
parent | 889532d1fd7d2fe969f5ae454e38bf8f1e59bd95 (diff) | |
download | upstream-91a8f2334afb39e3d7a639ea0b3aec0bca185603.tar.gz upstream-91a8f2334afb39e3d7a639ea0b3aec0bca185603.tar.bz2 upstream-91a8f2334afb39e3d7a639ea0b3aec0bca185603.zip |
add missing argument to debug/mount wrappers (thx, matteo)
SVN-Revision: 18718
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 |