Deleted Added
full compact
394a395,401
> /*
> * Just to safe, prevent PR #10970 from biting us in
> * the unlikely case that execing ypxfr fails. We don't
> * want to have any child processes spawned from this
> * child process.
> */
> _exit(0);
543,544c550,551
< * Returning NULL prevents the dispatcher from calling
< * svc_sendreply() since we already did it.
---
> * Proper fix for PR #10970: exit here so that we don't risk
> * having a child spawned from this sub-process.
546c553
< return (NULL);
---
> _exit(0);