From: Romain Forlot Date: Wed, 25 Jul 2018 14:06:21 +0000 (+0200) Subject: Add '@' as binder middle name separator. X-Git-Tag: 5.99.3~1 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=764c355550133b67e588d996c1a18a4937731dcb;p=apps%2Fapp-afb-helpers-submodule.git Add '@' as binder middle name separator. Used binder name if set using the application id which use '@' to separate name from version. Change-Id: I1c4d963250ac17d4e4104b6cc69aa08b8fa95505 Signed-off-by: Romain Forlot --- diff --git a/filescan-utils.c b/filescan-utils.c index 05e13f9..f58a2c9 100644 --- a/filescan-utils.c +++ b/filescan-utils.c @@ -117,7 +117,7 @@ const char* GetMiddleName(const char* name) int start; start = idx + 1; for (int jdx = start;; jdx++) { - if (fullname[jdx] == '-' || fullname[jdx] == '.' || fullname[jdx] == '\0') { + if (fullname[jdx] == '-' || fullname[jdx] == '@' || fullname[jdx] == '.' || fullname[jdx] == '\0') { fullname[jdx] = '\0'; return &fullname[start]; }