summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2009-10-26 22:04:04 +0000
committerKevin P. Fleming <kpfleming@digium.com>2009-10-26 22:04:04 +0000
commitea8b54fb9dcd8adacf5caebc7190771064630b60 (patch)
tree3cea054678cc5cfe11a3bc289126d0aaa1f521ac
parentad7a9fb8e883f2b92cb0dcc19143490805eef425 (diff)
Fix building in REF_DEBUG mode.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@225956 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--channels/chan_sip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 6cec8071e..a8daf87bd 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -1896,7 +1896,7 @@ static struct ao2_container *dialogs;
static struct sip_pvt *dialog_ref_debug(struct sip_pvt *p, char *tag, char *file, int line, const char *func)
{
if (p)
- _ao2_ref_debug(p, 1, tag, file, line, func);
+ __ao2_ref_debug(p, 1, tag, file, line, func);
else
ast_log(LOG_ERROR, "Attempt to Ref a null pointer\n");
return p;
@@ -1905,7 +1905,7 @@ static struct sip_pvt *dialog_ref_debug(struct sip_pvt *p, char *tag, char *file
static struct sip_pvt *dialog_unref_debug(struct sip_pvt *p, char *tag, char *file, int line, const char *func)
{
if (p)
- _ao2_ref_debug(p, -1, tag, file, line, func);
+ __ao2_ref_debug(p, -1, tag, file, line, func);
return NULL;
}
#else