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.
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@178376 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Tilghman Lesher
2009-02-24 20:40:49 +00:00
parent 31fd4d3573
commit 425201ca94

View File

@@ -3117,7 +3117,7 @@ int main(int argc, char *argv[])
int cpipe[2]; int cpipe[2];
/* PIPE signal ensures that astcanary dies when Asterisk dies */ /* PIPE signal ensures that astcanary dies when Asterisk dies */
pipe(cpipe); (void) pipe(cpipe);
canary_pipe = cpipe[0]; canary_pipe = cpipe[0];
snprintf(canary_filename, sizeof(canary_filename), "%s/alt.asterisk.canary.tweet.tweet.tweet", ast_config_AST_RUN_DIR); snprintf(canary_filename, sizeof(canary_filename), "%s/alt.asterisk.canary.tweet.tweet.tweet", ast_config_AST_RUN_DIR);