Re: [asterisk-users] carefulwrite: write() returned error: Broken pipe

2009-10-22 Thread Tilghman Lesher
On Thursday 22 October 2009 09:30:58 Josip Djuricic wrote: > I am getting this in CLI on release candidate version of Asterisk. Any > ideas, or points where to look? > > -- Launched AGI Script /var/lib/asterisk/agi-bin/rad-auth.agi > [Oct 22 18:21:45] ERROR[9853]: utils.c:1126 ast_carefulwrite:

Re: [asterisk-users] carefulwrite: write() returned error: Broken pipe

2009-10-22 Thread Danny Nicholas
In main/utils.c there is a line (1126) that reads like this - ast_log(LOG_ERROR, "write() returned error: %s\n", strerror(errno)); change ERROR to NOTICE - ast_log(LOG_NOTICE, "write() returned error: %s\n", strerror(errno)); and do make && make install. This will remove this message.