aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlmadsen <lmadsen@f38db490-d61c-443f-a65b-d21fe96a405b>2009-11-09 15:39:37 +0000
committerlmadsen <lmadsen@f38db490-d61c-443f-a65b-d21fe96a405b>2009-11-09 15:39:37 +0000
commited29861e84b37fafd58028125a997ff4b1daaef9 (patch)
treea126e6699a4bc7ee8a308bf042604a43f64877d3
parentd0f4fa8933685df27687527d15dfa47dcf2705a8 (diff)
Merged revisions 228897 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r228897 | lmadsen | 2009-11-09 09:38:38 -0600 (Mon, 09 Nov 2009) | 14 lines 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: http://svn.digium.com/svn/asterisk/branches/1.6.1@228899 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 4843895fd..3f9f16178 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -825,7 +825,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);