[svn-commits] tilghman: branch 1.6.2 r191224 - in /branches/1.6.2: ./ channels/ channels/h323/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Apr 29 18:15:06 CDT 2009


Author: tilghman
Date: Wed Apr 29 18:15:03 2009
New Revision: 191224

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=191224
Log:
Merged revisions 191219 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r191219 | tilghman | 2009-04-29 18:06:56 -0500 (Wed, 29 Apr 2009) | 2 lines
  
  Make H.323 compile with FDLEAK detection code enabled
........

Modified:
    branches/1.6.2/   (props changed)
    branches/1.6.2/channels/chan_h323.c
    branches/1.6.2/channels/h323/ast_h323.cxx

Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.2/channels/chan_h323.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.2/channels/chan_h323.c?view=diff&rev=191224&r1=191223&r2=191224
==============================================================================
--- branches/1.6.2/channels/chan_h323.c (original)
+++ branches/1.6.2/channels/chan_h323.c Wed Apr 29 18:15:03 2009
@@ -90,6 +90,8 @@
 }
 #endif
 
+#undef open
+#undef close
 #include "h323/chan_h323.h"
 
 receive_digit_cb on_receive_digit;

Modified: branches/1.6.2/channels/h323/ast_h323.cxx
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.2/channels/h323/ast_h323.cxx?view=diff&rev=191224&r1=191223&r2=191224
==============================================================================
--- branches/1.6.2/channels/h323/ast_h323.cxx (original)
+++ branches/1.6.2/channels/h323/ast_h323.cxx Wed Apr 29 18:15:03 2009
@@ -29,7 +29,6 @@
  * Version Info: $Id$
  */
 
-#include "asterisk.h"
 #define VERSION(a,b,c) ((a)*10000+(b)*100+(c))
 
 #include <arpa/inet.h>
@@ -72,6 +71,8 @@
 
 #include "compat_h323.h"
 
+#include "asterisk.h"
+
 #ifdef __cplusplus
 extern "C" {
 #endif
@@ -82,6 +83,9 @@
 #ifdef __cplusplus
 }
 #endif
+
+#undef open
+#undef close
 
 #include "chan_h323.h"
 #include "ast_h323.h"




More information about the svn-commits mailing list