[asterisk-commits] russell: trunk r83349 - in /trunk: ./ main/asterisk.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Sep 20 16:17:39 CDT 2007
Author: russell
Date: Thu Sep 20 16:17:39 2007
New Revision: 83349
URL: http://svn.digium.com/view/asterisk?view=rev&rev=83349
Log:
Merged revisions 83348 via svnmerge from
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)
........
Modified:
trunk/ (props changed)
trunk/main/asterisk.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/main/asterisk.c
URL: http://svn.digium.com/view/asterisk/trunk/main/asterisk.c?view=diff&rev=83349&r1=83348&r2=83349
==============================================================================
--- trunk/main/asterisk.c (original)
+++ trunk/main/asterisk.c Thu Sep 20 16:17:39 2007
@@ -2823,7 +2823,7 @@
#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);
More information about the asterisk-commits
mailing list