[asterisk-commits] qwell: branch 1.4 r104111 - /branches/1.4/channels/chan_h323.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Feb 25 18:03:30 CST 2008
Author: qwell
Date: Mon Feb 25 18:03:30 2008
New Revision: 104111
URL: http://svn.digium.com/view/asterisk?view=rev&rev=104111
Log:
IPTOS_MINCOST is not defined on Solaris.
(closes issue #12050)
Reported by: asgaroth
Patches:
12050.patch uploaded by putnopvut (license 60)
Modified:
branches/1.4/channels/chan_h323.c
Modified: branches/1.4/channels/chan_h323.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_h323.c?view=diff&rev=104111&r1=104110&r2=104111
==============================================================================
--- branches/1.4/channels/chan_h323.c (original)
+++ branches/1.4/channels/chan_h323.c Mon Feb 25 18:03:30 2008
@@ -54,7 +54,7 @@
#include <sys/socket.h>
#include <sys/signal.h>
#include <sys/param.h>
-#if defined(BSD)
+#if defined(BSD) || defined(SOLARIS)
#ifndef IPTOS_MINCOST
#define IPTOS_MINCOST 0x02
#endif
More information about the asterisk-commits
mailing list