summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko2007-11-24 04:41:20 +0000
committerDenis Vlasenko2007-11-24 04:41:20 +0000
commitcf24d29529bbf821a56b278a422e89aacc767193 (patch)
tree1e7dc0272fbe3818fca67743148eeeabc5a4afce
parentfa3f806cd0730ddc53765f04a846087b99db847a (diff)
downloadbusybox-1_7_4.zip
busybox-1_7_4.tar.gz
Apply post-1.7.3 fix to inetd1_7_4
-rw-r--r--Makefile2
-rw-r--r--networking/inetd.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a258503..c1fe21b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
VERSION = 1
PATCHLEVEL = 7
-SUBLEVEL = 3
+SUBLEVEL = 4
EXTRAVERSION =
NAME = Unnamed
diff --git a/networking/inetd.c b/networking/inetd.c
index 85e9ae7..162b69c 100644
--- a/networking/inetd.c
+++ b/networking/inetd.c
@@ -760,7 +760,7 @@ static servtab_t *getconfigent(void)
sep->se_bi = NULL;
#endif
argc = 0;
- for (; cp; arg = skip(&cp)) {
+ for (arg = skip(&cp); cp; arg = skip(&cp)) {
if (argc < MAXARGV)
sep->se_argv[argc++] = xxstrdup(arg);
}