X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fmhlsbr.c;h=6335463f4447167ff4dbf128a4aaea1f0f2bacca;hb=29a3e9f413c20e96891fabb90208096ebc101afb;hp=b49481285488bb5aa3424a6da6a0014987b9e0cb;hpb=4548981fb45fbc917cc2c26b7c96b31cfa14bc9b;p=mmh diff --git a/uip/mhlsbr.c b/uip/mhlsbr.c index b494812..6335463 100644 --- a/uip/mhlsbr.c +++ b/uip/mhlsbr.c @@ -1587,7 +1587,7 @@ doface (struct mcomp *c1) return NOTOK; } - for (i = 0; (child_id = m_vfork()) == NOTOK && i < 5; i++) + for (i = 0; (child_id = vfork()) == NOTOK && i < 5; i++) sleep (5); switch (child_id) { @@ -1761,7 +1761,7 @@ m_popen (char *name) if (pipe (pd) == NOTOK) adios ("pipe", "unable to"); - switch (m_pid = m_vfork()) { + switch (m_pid = vfork()) { case NOTOK: adios ("fork", "unable to");