- patch from Denis Vlasenko to add and use bb_xdaemon()

This commit is contained in:
Bernhard Reutner-Fischer
2006-04-12 18:09:26 +00:00
parent dac7ff15b7
commit 2c99851181
12 changed files with 33 additions and 22 deletions

View File

@ -1314,7 +1314,7 @@ inetd_main (int argc, char *argv[])
/* reexec for vfork() do continue parent */
vfork_daemon_rexec (0, 0, argc, argv, "-f");
#else
daemon (0, 0);
daemon (0, 0); /* bb_xdaemon? */
#endif /* uClinux */
} else {
setsid ();
@ -1802,3 +1802,4 @@ daytime_dg (int s, servtab_t *sep ATTRIBUTE_UNUSED)
(void) sendto (s, buffer, strlen (buffer), 0, &sa, sizeof (sa));
}
#endif /* CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME */
/* vi: set sw=4 ts=4: */