aboutsummaryrefslogtreecommitdiffstats
path: root/asterisk.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-08-22 23:06:14 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-08-22 23:06:14 +0000
commit0ce27cab3bb752988db610763b07ad60b58b1c9c (patch)
tree57a7ebbb1469572b005aceecf17cd09f7204d3e3 /asterisk.c
parent11c869642b25163b70d6f9b6ad5c61079c8e097f (diff)
make SIGURG handler message more obvious (issue #4878)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6364 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'asterisk.c')
-rwxr-xr-xasterisk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/asterisk.c b/asterisk.c
index fd28291ec..dedf23e69 100755
--- a/asterisk.c
+++ b/asterisk.c
@@ -629,8 +629,8 @@ static void urg_handler(int num)
/* Called by soft_hangup to interrupt the poll, read, or other
system call. We don't actually need to do anything though. */
/* Cannot EVER ast_log from within a signal handler */
- if (option_debug)
- printf("Urgent handler\n");
+ if (option_debug > 2)
+ printf("-- Asterisk Urgent handler\n");
signal(num, urg_handler);
return;
}