From: Oliver Ertl Date: Sat, 14 Jan 2006 20:18:39 +0000 (+0000) Subject: fixes #207 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=720f61bc0730cc589223e80ad2ea5c21ed490c16;p=librecmc%2Flibrecmc.git fixes #207 SVN-Revision: 2983 --- diff --git a/openwrt/package/base-files/default/etc/init.d/S50telnet b/openwrt/package/base-files/default/etc/init.d/S50telnet index e7d4d36773..ff5659ed47 100755 --- a/openwrt/package/base-files/default/etc/init.d/S50telnet +++ b/openwrt/package/base-files/default/etc/init.d/S50telnet @@ -1,2 +1,2 @@ #!/bin/sh -if awk -F: '/^root:/ && $2 !~ /\*/ {exit 1}' /etc/passwd 2>/dev/null || test $FAILSAFE; then telnetd -l /bin/login; fi +if awk -F: '/^root:/ && $2 !~ /\!/ {exit 1}' /etc/passwd 2>/dev/null || test $FAILSAFE; then telnetd -l /bin/login; fi