Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-11-24 07:41:20 +0300
committerDenis Vlasenko <vda.linux@googlemail.com>2007-11-24 07:41:20 +0300
commitcf24d29529bbf821a56b278a422e89aacc767193 (patch)
tree1e7dc0272fbe3818fca67743148eeeabc5a4afce
parentfa3f806cd0730ddc53765f04a846087b99db847a (diff)
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 a258503b6..c1fe21b53 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 85e9ae732..162b69c6b 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);
}