From 4fce6e6c6e247af810118215b1238add9f6f61fb Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Wed, 30 Aug 2017 10:32:38 +0200 Subject: Rename back define variable. Change-Id: Ie0d40f08230170ef780c46748889e153618d1c44 Signed-off-by: Romain Forlot --- filescan-utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'filescan-utils.c') diff --git a/filescan-utils.c b/filescan-utils.c index f1de9d0..3eb1b50 100644 --- a/filescan-utils.c +++ b/filescan-utils.c @@ -45,7 +45,7 @@ PUBLIC json_object* ScanForConfig (const char* searchPath, CtlScanDirModeT mode, // recursively search embedded directories ignoring any directory starting by '.' or '_' if (dirEnt->d_type == DT_DIR && mode == CTL_SCAN_RECURSIVE) { - char newpath[MAXPATH_LEN]; + char newpath[CONTROL_MAXPATH_LEN]; if (dirEnt->d_name[0]=='.' || dirEnt->d_name[0]=='_') continue; strncpy(newpath, searchPath, sizeof(newpath)); -- cgit 1.2.3-korg