From 27847c0b9b7c8cba726e3851620eacbffcc45a60 Mon Sep 17 00:00:00 2001 From: jow Date: Wed, 16 Nov 2011 13:17:35 +0000 Subject: [package] busybox: fix empty password detection in telnetd init (#10432) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29183 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/busybox/Makefile | 2 +- package/busybox/files/telnet | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'package/busybox') diff --git a/package/busybox/Makefile b/package/busybox/Makefile index a8bb67ac2..7770a538e 100644 --- a/package/busybox/Makefile +++ b/package/busybox/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=busybox PKG_VERSION:=1.19.3 -PKG_RELEASE:=6 +PKG_RELEASE:=7 PKG_FLAGS:=essential PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 diff --git a/package/busybox/files/telnet b/package/busybox/files/telnet index 334523eb9..994e713e7 100755 --- a/package/busybox/files/telnet +++ b/package/busybox/files/telnet @@ -8,7 +8,7 @@ has_root_pwd() { pwd="${pwd#*root:}" pwd="${pwd%%:*}" - test -n "${pwd#!}" + test -n "${pwd#[\!x]}" } get_root_home() { -- cgit v1.2.3