Ticket #18218: patch-qmail.c.diff

File patch-qmail.c.diff, 375 bytes (added by compconsultant@…, 15 years ago)

Goes in files directory

  • qmail.c

    old new  
    2929  if (pipe(pim) == -1) return -1;
    3030  if (pipe(pie) == -1) { close(pim[0]); close(pim[1]); return -1; }
    3131 
    32   switch(qq->pid = vfork()) {
     32  switch(qq->pid = fork()) {
    3333    case -1:
    3434      close(pim[0]); close(pim[1]);
    3535      close(pie[0]); close(pie[1]);