aboutsummaryrefslogtreecommitdiffstats
path: root/main/ast_expr2.fl
diff options
context:
space:
mode:
authormurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2007-01-02 22:30:53 +0000
committermurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2007-01-02 22:30:53 +0000
commit77effcddb38603de337cfc16b08033e668bcce42 (patch)
treef497a3d8a131c4d7247ca25f364a68e36f3fa8ed /main/ast_expr2.fl
parentec2a75d21d0e3122f95cbd847f607f565ddda9fc (diff)
This is a slight modification to Josh's edits for #8579; both files edited were the produced by flex; so the source files need to be changed instead, and the generated files regenerated.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@49237 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/ast_expr2.fl')
-rw-r--r--main/ast_expr2.fl6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/ast_expr2.fl b/main/ast_expr2.fl
index 58c522883..8f156e81f 100644
--- a/main/ast_expr2.fl
+++ b/main/ast_expr2.fl
@@ -241,11 +241,11 @@ int ast_expr(char *expr, char *buf, int length)
res_length = snprintf(buf, length, "%ld", (long int) io.val->u.i);
return_value = (res_length <= length) ? res_length : length;
} else {
-#ifdef STANDALONE
+#if defined(STANDALONE) || defined(LOW_MEMORY)
strncpy(buf, io.val->u.s, length - 1);
-#else /* !STANDALONE */
+#else /* !STANDALONE && !LOW_MEMORY */
ast_copy_string(buf, io.val->u.s, length);
-#endif /* STANDALONE */
+#endif /* STANDALONE || LOW_MEMORY */
return_value = strlen(buf);
free(io.val->u.s);
}