[asterisk-commits] qwell: trunk r74390 - in /trunk: ./ main/dns.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Jul 10 14:11:26 CDT 2007
Author: qwell
Date: Tue Jul 10 14:11:25 2007
New Revision: 74390
URL: http://svn.digium.com/view/asterisk?view=rev&rev=74390
Log:
Merged revisions 74388 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r74388 | qwell | 2007-07-10 14:10:36 -0500 (Tue, 10 Jul 2007) | 4 lines
Don't use #if to check if something is defined - use #ifdef instead.
Pointed out by kpfleming
........
Modified:
trunk/ (props changed)
trunk/main/dns.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/main/dns.c
URL: http://svn.digium.com/view/asterisk/trunk/main/dns.c?view=diff&rev=74390&r1=74389&r2=74390
==============================================================================
--- trunk/main/dns.c (original)
+++ trunk/main/dns.c Tue Jul 10 14:11:25 2007
@@ -229,7 +229,7 @@
ret = 1;
}
#ifdef HAVE_RES_NINIT
-#if HAVE_RES_NDESTROY
+#ifdef HAVE_RES_NDESTROY
res_ndestroy(&dnsstate);
#else
res_nclose(&dnsstate);
More information about the asterisk-commits
mailing list