Used binder name if set using the application id which use '@'
to separate name from version.
Change-Id: I1c4d963250ac17d4e4104b6cc69aa08b8fa95505
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
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];
}