summaryrefslogtreecommitdiff
path: root/pbx/ael
diff options
context:
space:
mode:
Diffstat (limited to 'pbx/ael')
-rw-r--r--pbx/ael/ael.flex2
-rw-r--r--pbx/ael/ael_lex.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/pbx/ael/ael.flex b/pbx/ael/ael.flex
index 1c4722e9b..41f24601c 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
-#ifdef STANDALONE
+#if defined(STANDALONE) || defined(LOW_MEMORY)
strncpy(fnamebuf, p1 + 1, sizeof(fnamebuf) - 1);
#else
ast_copy_string(fnamebuf, p1 + 1, sizeof(fnamebuf));
diff --git a/pbx/ael/ael_lex.c b/pbx/ael/ael_lex.c
index daddeb118..91cc3e7db 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
-#ifdef STANDALONE
+#if defined(STANDALONE) || defined(LOW_MEMORY)
strncpy(fnamebuf, p1 + 1, sizeof(fnamebuf) - 1);
#else
ast_copy_string(fnamebuf, p1 + 1, sizeof(fnamebuf));