[asterisk-commits] russell: trunk r91029 - /trunk/utils/astman.c
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Tue Dec  4 17:01:15 CST 2007
    
    
  
Author: russell
Date: Tue Dec  4 17:01:15 2007
New Revision: 91029
URL: http://svn.digium.com/view/asterisk?view=rev&rev=91029
Log:
Fix the build of astman.  Any file that includes any asterisk sub-headers
needs to first include asterisk.h.
(closes issue #11394)
Modified:
    trunk/utils/astman.c
Modified: trunk/utils/astman.c
URL: http://svn.digium.com/view/asterisk/trunk/utils/astman.c?view=diff&rev=91029&r1=91028&r2=91029
==============================================================================
--- trunk/utils/astman.c (original)
+++ trunk/utils/astman.c Tue Dec  4 17:01:15 2007
@@ -21,7 +21,9 @@
  * ASTerisk MANager
  *
  */
- 
+
+#include "asterisk.h"
+
 #include <newt.h>
 #include <stdio.h>
 #include <sys/time.h>
    
    
More information about the asterisk-commits
mailing list