summaryrefslogtreecommitdiff
path: root/pbx/ael
diff options
context:
space:
mode:
authorSteve Murphy <murf@digium.com>2007-03-26 17:56:26 +0000
committerSteve Murphy <murf@digium.com>2007-03-26 17:56:26 +0000
commit834f783edfb8c5559cc226a4213b9bad02bb5bf8 (patch)
treeb743f23824b83ab5c212e903835081e7875d839a /pbx/ael
parent08e3a9bdc82ec4bb2b9fc24c8a4887a03c085d71 (diff)
Merged revisions 59206 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r59206 | murf | 2007-03-26 11:38:29 -0600 (Mon, 26 Mar 2007) | 1 line A fix for the flex input files, DONT_COMPILE, and STANDALONE_AEL ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@59210 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx/ael')
-rw-r--r--pbx/ael/ael.flex2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbx/ael/ael.flex b/pbx/ael/ael.flex
index 41f24601c..cfdd5eb94 100644
--- a/pbx/ael/ael.flex
+++ b/pbx/ael/ael.flex
@@ -411,7 +411,7 @@ includes { STORE_POS; return KW_INCLUDES;}
if (*(p1+1) != '/')
snprintf(fnamebuf, sizeof(fnamebuf), "%s/%s", ast_config_AST_CONFIG_DIR, p1 + 1);
else
-#if defined(STANDALONE) || defined(LOW_MEMORY)
+#if defined(STANDALONE) || defined(LOW_MEMORY) || defined(STANDALONE_AEL)
strncpy(fnamebuf, p1 + 1, sizeof(fnamebuf) - 1);
#else
ast_copy_string(fnamebuf, p1 + 1, sizeof(fnamebuf));