From dd085dc34cddd93faa63ed49a3159c7ec0a242dd Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Thu, 19 Jul 2018 11:56:36 +0200 Subject: Fix: use of GetBindingDirPath without dynapi For classic binding < 3 without dynapi this fix the error at compile time about conflicting type for this function. This worked on eel and previous version because 'struct dynapi' was declared and available for version 2 but now since binder is in V3 then it isn't the case so function signature is not valid anymore. Change-Id: I135a723d21d70b8c54f4cab1c534210757318ed0 Signed-off-by: Romain Forlot --- filescan-utils.c | 8 ++++++-- filescan-utils.h | 4 ++++ 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/filescan-utils.c b/filescan-utils.c index 6c443ea..05e13f9 100644 --- a/filescan-utils.c +++ b/filescan-utils.c @@ -146,14 +146,18 @@ const char* GetBinderName() return binderName; } -char* GetBindingDirPath(struct afb_dynapi* dynapi) +#if(AFB_BINDING_VERSION == 0 && defined(AFB_BINDING_WANT_DYNAPI)) +char *GetBindingDirPath(struct afb_dynapi *dynapi) +#else +char *GetBindingDirPath() +#endif { // A file description should not be greater than 999.999.999 char fd_link[CONTROL_MAXPATH_LEN]; char retdir[CONTROL_MAXPATH_LEN]; ssize_t len; -#if((AFB_BINDING_VERSION == 0 || AFB_BINDING_VERSION == 3) && defined(AFB_BINDING_WANT_DYNAPI)) +#if(AFB_BINDING_VERSION == 0 && defined(AFB_BINDING_WANT_DYNAPI)) if (!dynapi) return NULL; sprintf(fd_link, "/proc/self/fd/%d", afb_dynapi_rootdir_get_fd(dynapi)); diff --git a/filescan-utils.h b/filescan-utils.h index bf8fb53..64ecfb9 100644 --- a/filescan-utils.h +++ b/filescan-utils.h @@ -86,7 +86,11 @@ extern json_object* ScanForConfig (const char* searchPath, CtlScanDirModeT mode, * * @return char* string representing the path to binding root directory. */ +#if(AFB_BINDING_VERSION == 0 && defined(AFB_BINDING_WANT_DYNAPI)) extern char *GetBindingDirPath(struct afb_dynapi *dynapi); +#else +extern char *GetBindingDirPath(); +#endif /** * @brief Get the environment directory colon separated path list. This take the -- cgit 1.2.3-korg