X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-api-so.c;h=4908ba85422e9fad8e03ef70bed3c757eb36dd80;hb=c9ba2ce49808a19a4ef982280a46256797b830ae;hp=d673d0eba94d485ec07615ebd36ef36a603f5071;hpb=c710a0da4ebcc126275c42a0387ff85b2557e3ae;p=src%2Fapp-framework-binder.git diff --git a/src/afb-api-so.c b/src/afb-api-so.c index d673d0eb..4908ba85 100644 --- a/src/afb-api-so.c +++ b/src/afb-api-so.c @@ -27,6 +27,7 @@ #include "afb-api-so.h" #include "afb-api-so-v1.h" +#include "afb-api-so-v2.h" #include "verbose.h" int afb_api_so_timeout = 15; @@ -53,9 +54,14 @@ static int load_binding(const char *path, int force) } /* retrieves the register function */ + rc = afb_api_so_v2_add(path, handle); + if (rc < 0) { + /* error when loading a valid v2 binding */ + goto error2; + } rc = afb_api_so_v1_add(path, handle); if (rc < 0) { - /* error when loading a valid v& binding */ + /* error when loading a valid v1 binding */ goto error2; } if (rc == 0) {