summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorLeif Madsen <leif@leifmadsen.com>2009-11-09 15:38:38 +0000
committerLeif Madsen <leif@leifmadsen.com>2009-11-09 15:38:38 +0000
commitfef304e641b301205fa231b6a201584cf7021779 (patch)
tree3451188d541f91d819bc8164c9f61e069fcfa561 /main
parent88d5fedb34ea6b0c3f8a4585ad481735adf0366b (diff)
Merged revisions 228896 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r228896 | lmadsen | 2009-11-09 09:37:43 -0600 (Mon, 09 Nov 2009) | 6 lines 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: https://origsvn.digium.com/svn/asterisk/trunk@228897 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main')
-rw-r--r--main/channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/channel.c b/main/channel.c
index dd3d11096..3ec23f9f7 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -856,7 +856,7 @@ __ast_channel_alloc_ap(int needqueue, int state, const char *cid_num, const char
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:
if (tmp->timer) {
ast_timer_close(tmp->timer);