]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
issue #5713
authorKevin P. Fleming <kpfleming@digium.com>
Fri, 11 Nov 2005 16:02:56 +0000 (16:02 +0000)
committerKevin P. Fleming <kpfleming@digium.com>
Fri, 11 Nov 2005 16:02:56 +0000 (16:02 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7074 65c4cc65-6c06-0410-ace0-fbb531ad65f3

ChangeLog
channels/chan_iax2.c

index 045906116ab731d1d6363d2cb9c3778699dcf587..190545f9960e507ba693ce7a0c538ad0712f9cef 100755 (executable)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-11-11  Kevin P. Fleming  <kpfleming@digium.com>
+
+       * channels/chan_iax2.c: ensure that system headers that provide basic types are included first (issue #5713)
+
 2005-11-11  Russell Bryant  <russell@digium.com>
 
        * many files in apps/: Clean up application descriptions. Clarify some wording and make sure they wrap at 80 characters.
index c6df0fd3dfc2480d650851956784286b5b1f81d7..bf363848b46af9fe7ca83badeb337e7b27f3838a 100755 (executable)
@@ -26,6 +26,9 @@
  * \ingroup channel_drivers
  */
 
+#include <stdlib.h>
+#include <stdio.h>
+#include <sys/types.h>
 #include <sys/mman.h>
 #include <arpa/inet.h>
 #include <dirent.h>
 #include <sys/time.h>
 #include <sys/signal.h>
 #include <signal.h>
-#include <stdlib.h>
-#include <stdio.h>
 #include <string.h>
 #include <errno.h>
 #include <unistd.h>
 #include <netdb.h>
 #include <fcntl.h>
-#include <sys/types.h>
 #include <sys/stat.h>
 #include <regex.h>
 #ifdef IAX_TRUNKING