aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-04 23:01:15 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-04 23:01:15 +0000
commite40f5364c1d5aff121542d4b420ac31663c8d08c (patch)
tree850dcf0dd54d99377df797033634571348fcc947 /utils
parentd2783f534ef29f5d5c83c8aaaab98258277c020f (diff)
Fix the build of astman. Any file that includes any asterisk sub-headers
needs to first include asterisk.h. (closes issue #11394) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@91029 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'utils')
-rw-r--r--utils/astman.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/astman.c b/utils/astman.c
index 1e48e83d5..bffd3db60 100644
--- a/utils/astman.c
+++ b/utils/astman.c
@@ -21,7 +21,9 @@
* ASTerisk MANager
*
*/
-
+
+#include "asterisk.h"
+
#include <newt.h>
#include <stdio.h>
#include <sys/time.h>