aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlmadsen <lmadsen@f38db490-d61c-443f-a65b-d21fe96a405b>2009-11-09 15:37:43 +0000
committerlmadsen <lmadsen@f38db490-d61c-443f-a65b-d21fe96a405b>2009-11-09 15:37:43 +0000
commit74bedc844b10ab114d82b728cb00c8448b0bed12 (patch)
treeb77bc04f8e8b246263b238826c9782e89ecf44f9
parent5881357797c7b1fff8ea1b5041e8b0cd7c41ed4f (diff)
Update WARNING message.
Update a WARNING message to give a suggested fix when encountered. (closes issue #16198) Reported by: atis Tested by: atis git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@228896 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--main/channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/channel.c b/main/channel.c
index 3c772cf5b..3c7d3b963 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -759,7 +759,7 @@ struct ast_channel *ast_channel_alloc(int needqueue, int state, const char *cid_
if (needqueue) {
if (pipe(tmp->alertpipe)) {
- ast_log(LOG_WARNING, "Channel allocation failed: Can't create alert pipe!\n");
+ ast_log(LOG_WARNING, "Channel allocation failed: Can't create alert pipe! Try increasing max file descriptors with ulimit -n\n");
alertpipe_failed:
#ifdef HAVE_DAHDI
if (tmp->timingfd > -1)