Fixed spelling 79/13979/2
authorSebastien Douheret <sebastien.douheret@iot.bzh>
Tue, 15 May 2018 12:32:33 +0000 (14:32 +0200)
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>
Fri, 18 May 2018 17:22:26 +0000 (17:22 +0000)
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
filescan-utils.c
filescan-utils.h

index 8a155cf..a15a69b 100644 (file)
@@ -100,7 +100,7 @@ json_object* ScanForConfig (const char* searchPath, CtlScanDirModeT mode, const
     return (responseJ);
 }
 
-const char *GetMidleName(const char*name) {
+const char *GetMiddleName(const char*name) {
     char *fullname = strdup(name);
 
     for (int idx = 0; fullname[idx] != '\0'; idx++) {
@@ -129,7 +129,7 @@ const char *GetBinderName() {
         static char psName[17];
         // retrieve binder name from process name afb-name-trailer
         prctl(PR_GET_NAME, psName,NULL,NULL,NULL);
-        binderName=(char*)GetMidleName(psName);
+        binderName=(char*)GetMiddleName(psName);
     }
 
     return binderName;
index fc3a6a7..1ed31a3 100644 (file)
@@ -59,7 +59,7 @@ typedef enum {
  *
  * @return const char*
  */
-const char *GetMidleName(const char *name);
+const char *GetMiddleName(const char *name);
 
 /**
  * @brief Get the Binder Name without the prefix set by the AGL appfw 'afbd-'