From d33357e20db8e95e75042ecd02afca8ec5cc3fd7 Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Fri, 12 Dec 2014 12:56:12 +0000 Subject: 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 --- m4/path.c | 4 ++-- 1 file 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 -- cgit v1.2.1