aboutsummaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-08-27 15:02:32 +0000
committerMatt Kraai <kraai@debian.org>2001-08-27 15:02:32 +0000
commit449377aa6a8cb6b75d3b6aff6af7aade3174b2f3 (patch)
tree44e814ac04f10384b2f87986a2c2faa6b3f8e9a6 /applets
parent80f6d55836963f4e85c297f2901161d0ff69b4cb (diff)
downloadbusybox-449377aa6a8cb6b75d3b6aff6af7aade3174b2f3.tar.gz
Fix invocation of `-/bin/sh' (bug #1209).
Diffstat (limited to 'applets')
-rw-r--r--applets/busybox.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/applets/busybox.c b/applets/busybox.c
index 7a220f7b0..33efb5d84 100644
--- a/applets/busybox.c
+++ b/applets/busybox.c
@@ -69,16 +69,16 @@ int main(int argc, char **argv)
{
const char *s;
- for (s = applet_name = argv[0]; *s != '\0';) {
+ applet_name = argv[0];
+
+ if (applet_name[0] == '-')
+ applet_name++;
+
+ for (s = applet_name; *s != '\0';) {
if (*s++ == '/')
applet_name = s;
}
- /* Add in a special case hack for a leading hyphen */
- if (**argv == '-' && *(*argv+1)!= '-') {
- applet_name = (*argv+1);
- }
-
#ifdef BB_LOCALE_SUPPORT
#ifdef BB_INIT
if(getpid()!=1) /* Do not set locale for `init' */