[asterisk-commits] kpfleming: trunk r225956 - in /trunk: ./ channels/ doc/lang/ main/editline/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Oct 26 17:04:08 CDT 2009
Author: kpfleming
Date: Mon Oct 26 17:04:04 2009
New Revision: 225956
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=225956
Log:
Fix building in REF_DEBUG mode.
Modified:
trunk/UPGRADE-1.6.txt (props changed)
trunk/UPGRADE.txt (props changed)
trunk/channels/chan_sip.c
trunk/doc/lang/language-criteria.txt (props changed)
trunk/main/editline/makelist.in (props changed)
Propchange: trunk/UPGRADE-1.6.txt
('svn:mergeinfo' removed)
Propchange: trunk/UPGRADE.txt
('svn:mergeinfo' removed)
Modified: trunk/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/trunk/channels/chan_sip.c?view=diff&rev=225956&r1=225955&r2=225956
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Mon Oct 26 17:04:04 2009
@@ -1896,7 +1896,7 @@
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_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
Propchange: trunk/doc/lang/language-criteria.txt
('svn:mergeinfo' removed)
Propchange: trunk/main/editline/makelist.in
('svn:mergeinfo' removed)
More information about the asterisk-commits
mailing list