From: Denis Vlasenko Date: Sat, 24 Nov 2007 04:41:20 +0000 (-0000) Subject: Apply post-1.7.3 fix to inetd X-Git-Tag: 1_7_4 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=006cb3c821219f24b4c763cfe5bb618f125d4a86;p=oweals%2Fbusybox.git Apply post-1.7.3 fix to inetd --- 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); }