[asterisk-commits] tilghman: branch 1.6.0 r178376 - in /branches/1.6.0: ./ main/asterisk.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Feb 24 14:40:49 CST 2009


Author: tilghman
Date: Tue Feb 24 14:40:49 2009
New Revision: 178376

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=178376
Log:
Merged revisions 178375 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r178375 | tilghman | 2009-02-24 14:40:02 -0600 (Tue, 24 Feb 2009) | 2 lines
  
  The 3 possible errors with pipe(2) are all impossible in this situation.
........

Modified:
    branches/1.6.0/   (props changed)
    branches/1.6.0/main/asterisk.c

Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.0/main/asterisk.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.0/main/asterisk.c?view=diff&rev=178376&r1=178375&r2=178376
==============================================================================
--- branches/1.6.0/main/asterisk.c (original)
+++ branches/1.6.0/main/asterisk.c Tue Feb 24 14:40:49 2009
@@ -3117,7 +3117,7 @@
 			int cpipe[2];
 
 			/* PIPE signal ensures that astcanary dies when Asterisk dies */
-			pipe(cpipe);
+			(void) pipe(cpipe);
 			canary_pipe = cpipe[0];
 
 			snprintf(canary_filename, sizeof(canary_filename), "%s/alt.asterisk.canary.tweet.tweet.tweet", ast_config_AST_RUN_DIR);




More information about the asterisk-commits mailing list