summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-11-24 04:41:20 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-11-24 04:41:20 +0000
commitcf24d29529bbf821a56b278a422e89aacc767193 (patch)
tree1e7dc0272fbe3818fca67743148eeeabc5a4afce
parentfa3f806cd0730ddc53765f04a846087b99db847a (diff)
downloadbusybox-w32-1_7_4.tar.gz
busybox-w32-1_7_4.tar.bz2
busybox-w32-1_7_4.zip
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 @@
1VERSION = 1 1VERSION = 1
2PATCHLEVEL = 7 2PATCHLEVEL = 7
3SUBLEVEL = 3 3SUBLEVEL = 4
4EXTRAVERSION = 4EXTRAVERSION =
5NAME = Unnamed 5NAME = Unnamed
6 6
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)
760 sep->se_bi = NULL; 760 sep->se_bi = NULL;
761#endif 761#endif
762 argc = 0; 762 argc = 0;
763 for (; cp; arg = skip(&cp)) { 763 for (arg = skip(&cp); cp; arg = skip(&cp)) {
764 if (argc < MAXARGV) 764 if (argc < MAXARGV)
765 sep->se_argv[argc++] = xxstrdup(arg); 765 sep->se_argv[argc++] = xxstrdup(arg);
766 } 766 }