Rename back define variable.
authorRomain Forlot <romain.forlot@iot.bzh>
Wed, 30 Aug 2017 08:32:38 +0000 (10:32 +0200)
committerRomain Forlot <romain.forlot@iot.bzh>
Wed, 30 Aug 2017 08:32:38 +0000 (10:32 +0200)
Change-Id: Ie0d40f08230170ef780c46748889e153618d1c44
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
filescan-utils.c
filescan-utils.h

index f1de9d0..3eb1b50 100644 (file)
@@ -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));
index e0c5da1..3c091b7 100644 (file)
@@ -31,8 +31,8 @@
 #endif
 #define STATIC static
 
-#ifndef MAXPATH_LEN
-  #define MAXPATH_LEN 255
+#ifndef CONTROL_MAXPATH_LEN
+  #define CONTROL_MAXPATH_LEN 255
 #endif
 
 // ctl-misc.c