summaryrefslogtreecommitdiff
path: root/pbx/ael
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2007-03-26 15:20:17 +0000
committerJoshua Colp <jcolp@digium.com>2007-03-26 15:20:17 +0000
commit133f26f9775e7489e8d2e25c1c8f433dbc6864f4 (patch)
tree63aa53e100221c164f2b2bd6ab2f423c0d9f887e /pbx/ael
parentcc22f60f30b32b24b1b178fda7cc1bbef4b3cbc3 (diff)
Merged revisions 59200 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r59200 | file | 2007-03-26 11:16:29 -0400 (Mon, 26 Mar 2007) | 2 lines Have ast_copy_string magically appear in the aelparse binary! DONT_OPTIMIZE should now work once again. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@59201 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx/ael')
-rw-r--r--pbx/ael/ael_lex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbx/ael/ael_lex.c b/pbx/ael/ael_lex.c
index 91cc3e7db..55c7d06a9 100644
--- a/pbx/ael/ael_lex.c
+++ b/pbx/ael/ael_lex.c
@@ -1683,7 +1683,7 @@ YY_RULE_SETUP
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));