summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2010-01-15 23:50:47 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2010-01-15 23:50:47 +0000
commit6c1e69370eb4230b07cc272f33a139628764a063 (patch)
tree0be17992a9a494d13b1b2efdafc5cb6727600453
parentddad718f8e436384e936c549470fb144cc7c9cbc (diff)
Err, oops, it was already the way I intended.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@240629 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--Makefile8
-rw-r--r--main/asterisk.c2
2 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 04c698693..e0b2f4afb 100644
--- a/Makefile
+++ b/Makefile
@@ -748,10 +748,10 @@ samples: adsi
echo ";astctlgroup = apache" ; \
echo ";astctl = asterisk.ctl" ; \
echo "" ; \
- echo ";[compat]" ; \
- echo ";pbx_realtime=1.6" ; \
- echo ";res_agi=1.6" ; \
- echo ";app_set=1.6" ; \
+ echo "[compat]" ; \
+ echo "pbx_realtime=1.6" ; \
+ echo "res_agi=1.6" ; \
+ echo "app_set=1.6" ; \
) > $(DESTDIR)$(ASTCONFPATH) ; \
else \
echo "Skipping asterisk.conf creation"; \
diff --git a/main/asterisk.c b/main/asterisk.c
index 427ddf6aa..5ccfd200b 100644
--- a/main/asterisk.c
+++ b/main/asterisk.c
@@ -170,7 +170,7 @@ int daemon(int, int); /* defined in libresolv of all places */
/*! @{ */
struct ast_flags ast_options = { AST_DEFAULT_OPTIONS };
-struct ast_flags ast_compat = { 0x07 };
+struct ast_flags ast_compat = { 0 };
int option_verbose; /*!< Verbosity level */
int option_debug; /*!< Debug level */