https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r83348 | russell | 2007-09-20 16:16:48 -0500 (Thu, 20 Sep 2007) | 4 lines
When daemonizing, don't change working directory to "/". It makes it not be
able to do a core dump when not running as uid=root.
(closes issue #10766, xrg)
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@83349
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
#if HAVE_WORKING_FORK
if (ast_opt_always_fork || !ast_opt_no_fork) {
- daemon(0, 0);
+ daemon(1, 0);
ast_mainpid = getpid();
/* Blindly re-write pid file since we are forking */
unlink(ast_config_AST_PID);