View | Details | Raw Unified
Collapse All | Expand All

(-) qmail-1.03-orig/qmail-getpw.c (-4 / +4 lines)
 Lines 100-109    Link Here 
    dash = auto_break;
    dash = auto_break;
    pw = getpwnam(auto_usera);
    pw = getpwnam(auto_usera);
  }
  }
  
  if (connection) disconnect_mysql();
  if (!pw) { disconnect_mysql(); _exit(QLX_NOALIAS); }
  if (!pw) _exit(QLX_NOALIAS);
  substdio_puts(subfdoutsmall,pw->pw_name);
  substdio_puts(subfdoutsmall,pw->pw_name);
  substdio_put(subfdoutsmall,"",1);
  substdio_put(subfdoutsmall,"",1);
 Lines 119-123    Link Here 
  substdio_put(subfdoutsmall,"",1);
  substdio_put(subfdoutsmall,"",1);
  substdio_flush(subfdoutsmall);
  substdio_flush(subfdoutsmall);
  if (connection) disconnect_mysql();
  _exit(0);
  _exit(0);
}
}