Skip to content
Snippets Groups Projects
Commit cabbc996 authored by Jo-Philipp Wich's avatar Jo-Philipp Wich
Browse files

busybox: fix empty password detection in telnetd init (#10432)

SVN-Revision: 29183
parent 63820327
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk ...@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=busybox PKG_NAME:=busybox
PKG_VERSION:=1.19.3 PKG_VERSION:=1.19.3
PKG_RELEASE:=6 PKG_RELEASE:=7
PKG_FLAGS:=essential PKG_FLAGS:=essential
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
......
...@@ -8,7 +8,7 @@ has_root_pwd() { ...@@ -8,7 +8,7 @@ has_root_pwd() {
pwd="${pwd#*root:}" pwd="${pwd#*root:}"
pwd="${pwd%%:*}" pwd="${pwd%%:*}"
test -n "${pwd#!}" test -n "${pwd#[\!x]}"
} }
get_root_home() { get_root_home() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment