diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-01-17 20:24:36 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-01-17 20:24:36 +0000 |
commit | 15d5a8b1c1e14f8c1f1b12e75330c0ffd252617e (patch) | |
tree | 38435be2e95053ebf48a6c101311ddc996258fd2 /package/dropbear/files | |
parent | 0fce01ddb73d2a1bb153eee923cac482cf1ae5c5 (diff) | |
download | upstream-15d5a8b1c1e14f8c1f1b12e75330c0ffd252617e.tar.gz upstream-15d5a8b1c1e14f8c1f1b12e75330c0ffd252617e.tar.bz2 upstream-15d5a8b1c1e14f8c1f1b12e75330c0ffd252617e.zip |
fix dropbear config (#960)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6117 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/dropbear/files')
-rwxr-xr-x | package/dropbear/files/dropbear.init | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/dropbear/files/dropbear.init b/package/dropbear/files/dropbear.init index ef69e90176..58b0bc2fab 100755 --- a/package/dropbear/files/dropbear.init +++ b/package/dropbear/files/dropbear.init @@ -5,10 +5,10 @@ config_cb() { local cfg="$CONFIG_SECTION" local nopasswd - local type - config_get cfgtype "$cfg" TYPE + local cfgt + config_get cfgt "$cfg" TYPE - case "$cfgtype" in + case "$cfgt" in dropbear) config_get passauth $cfg PasswordAuth config_get port $cfg Port |