summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary V. Vaughan <gary@gnu.org>2014-12-12 12:56:12 +0000
committerGary V. Vaughan <gary@gnu.org>2014-12-12 12:56:12 +0000
commitd33357e20db8e95e75042ecd02afca8ec5cc3fd7 (patch)
treec8eea3081903a352e6c31dbd89f2365a7a8e9907
parentbef10ccba44e1689551324d68926444fce39b455 (diff)
downloadm4-d33357e20db8e95e75042ecd02afca8ec5cc3fd7.tar.gz
libm4: spell TRUNCATE_FILENAME consistently.
* m4/path.c (m4_path_search): s/FILE_TRUNCATE/TRUNCATE_FILENAME/ to match definition. Reported by KO Myung-Hun Signed-off-by: Gary V. Vaughan <gary@gnu.org>
-rw-r--r--m4/path.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/path.c b/m4/path.c
index e2816cfa..ef743a3c 100644
--- a/m4/path.c
+++ b/m4/path.c
@@ -225,7 +225,7 @@ m4_path_search (m4 *context, const char *filename, const char **suffixes)
/* Try appending each of the suffixes we were given. */
filepath = strncpy (xmalloc (mem + max_suffix_len +1), filename, mem +1);
-#if FILE_TRUNCATE
+#if TRUNCATE_FILENAME
filepath = path_truncate (filepath);
mem = strlen (filepath); /* recalculate length after truncation */
#endif
@@ -271,7 +271,7 @@ m4_path_search (m4 *context, const char *filename, const char **suffixes)
filepath = strncpy (xmalloc (mem + max_suffix_len +1), pathname, mem +1);
free (pathname);
-#if FILE_TRUNCATE
+#if TRUNCATE_FILENAME
filepath = path_truncate (filepath);
mem = strlen (filepath); /* recalculate length after truncation */
#endif