summaryrefslogtreecommitdiff
path: root/main/channel.c
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2010-07-08 19:12:55 +0000
committerRichard Mudgett <rmudgett@digium.com>2010-07-08 19:12:55 +0000
commit25a3c313b55ed33022ecc27a637d44e24b7d5832 (patch)
treec25d317db372c3ac398d9a06cfbc6e5cafd283d6 /main/channel.c
parenta1b89a6a50ced1b1c66610d4741b8b1396ca6fc4 (diff)
Fix trunk compile.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@274773 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/channel.c')
-rw-r--r--main/channel.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/main/channel.c b/main/channel.c
index f6d9ada94..5398f0073 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -72,9 +72,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include <sys/epoll.h>
#endif
-#ifdef HAVE_PRI
-#include "sig_pri.h"
-#endif
+#if defined(HAVE_PRI)
+#include "libpri.h"
+#endif /* defined(HAVE_PRI) */
struct ast_epoll_data {
struct ast_channel *chan;
@@ -285,7 +285,7 @@ static void channel_data_add_flags(struct ast_data *tree,
static const char *callerid_ton2str(int ton)
{
-#ifdef HAVE_PRI
+#if defined(HAVE_PRI)
switch (ton) {
case PRI_TON_INTERNATIONAL:
return "International Number";
@@ -303,7 +303,7 @@ static const char *callerid_ton2str(int ton)
default:
return "Unknown Number Type";
}
-#endif
+#endif /* defined(HAVE_PRI) */
return "";
}