aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-09-02 02:36:18 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2003-09-02 02:36:18 +0000
commitdc4e75ef7ca135c836d22e380847672cf5b3773b (patch)
treed2ff4fef7b9192de63761935103699569ecbb2ee /networking
parent005f83adf511ab89296639abbef737ad4e5826f9 (diff)
downloadbusybox-w32-dc4e75ef7ca135c836d22e380847672cf5b3773b.tar.gz
busybox-w32-dc4e75ef7ca135c836d22e380847672cf5b3773b.tar.bz2
busybox-w32-dc4e75ef7ca135c836d22e380847672cf5b3773b.zip
move all "-/bin/sh" "/bin/sh" and "sh" to libbb/messages.c file as one
constant. Vodz last_patch_107
Diffstat (limited to 'networking')
-rw-r--r--networking/ifupdown.c2
-rw-r--r--networking/telnetd.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/networking/ifupdown.c b/networking/ifupdown.c
index 78f2bb0f1..1a23bac37 100644
--- a/networking/ifupdown.c
+++ b/networking/ifupdown.c
@@ -1009,7 +1009,7 @@ static int doit(char *str)
1009 case -1: /* failure */ 1009 case -1: /* failure */
1010 return 0; 1010 return 0;
1011 case 0: /* child */ 1011 case 0: /* child */
1012 execle("/bin/sh", "/bin/sh", "-c", str, NULL, environ); 1012 execle(DEFAULT_SHELL, DEFAULT_SHELL, "-c", str, NULL, environ);
1013 exit(127); 1013 exit(127);
1014 } 1014 }
1015 waitpid(child, &status, 0); 1015 waitpid(child, &status, 0);
diff --git a/networking/telnetd.c b/networking/telnetd.c
index 27b08aced..205661ba2 100644
--- a/networking/telnetd.c
+++ b/networking/telnetd.c
@@ -1,4 +1,4 @@
1/* $Id: telnetd.c,v 1.6 2003/04/25 12:32:37 andersen Exp $ 1/* $Id: telnetd.c,v 1.7 2003/09/02 02:36:16 bug1 Exp $
2 * 2 *
3 * Simple telnet server 3 * Simple telnet server
4 * Bjorn Wesen, Axis Communications AB (bjornw@axis.com) 4 * Bjorn Wesen, Axis Communications AB (bjornw@axis.com)
@@ -52,7 +52,7 @@ static const char *loginpath =
52#ifdef CONFIG_LOGIN 52#ifdef CONFIG_LOGIN
53"/bin/login"; 53"/bin/login";
54#else 54#else
55"/bin/sh"; 55DEFAULT_SHELL;
56#endif 56#endif
57static const char *issuefile = "/etc/issue.net"; 57static const char *issuefile = "/etc/issue.net";
58 58