Apply post-1.7.3 fix to inetd 1_7_4
authorDenis Vlasenko <vda.linux@googlemail.com>
Sat, 24 Nov 2007 04:41:20 +0000 (04:41 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Sat, 24 Nov 2007 04:41:20 +0000 (04:41 -0000)
Makefile
networking/inetd.c

index a258503b6578f56398fc98925b5ca72f70a1acb5..c1fe21b53762ac2472e6f859cd2b28249350959c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 VERSION = 1
 PATCHLEVEL = 7
-SUBLEVEL = 3
+SUBLEVEL = 4
 EXTRAVERSION =
 NAME = Unnamed
 
index 85e9ae732c17f0aa76bf2af7360dfbaaad7e6db0..162b69c6ba967f31113b4f0f0b6a79f4a5c91175 100644 (file)
@@ -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);
        }