aboutsummaryrefslogtreecommitdiffstats
path: root/Audio-Common/filescan-utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'Audio-Common/filescan-utils.c')
-rw-r--r--Audio-Common/filescan-utils.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/Audio-Common/filescan-utils.c b/Audio-Common/filescan-utils.c
index 9fa121b..4a5613f 100644
--- a/Audio-Common/filescan-utils.c
+++ b/Audio-Common/filescan-utils.c
@@ -27,7 +27,7 @@
// List Avaliable Configuration Files
-PUBLIC json_object* ScanForConfig (char* searchPath, CtlScanDirModeT mode, char *pre, char *ext) {
+PUBLIC json_object* ScanForConfig (const char* searchPath, CtlScanDirModeT mode, const char *pre, const char *ext) {
json_object *responseJ;
char *dirPath;
char* dirList= strdup(searchPath);
@@ -94,8 +94,8 @@ PUBLIC const char *GetMidleName(const char*name) {
int start;
if (fullname[idx] == '-') {
start = idx + 1;
- for (int jdx = start; fullname[jdx] != '\0'; jdx++) {
- if (fullname[jdx] == '-') {
+ for (int jdx = start; ; jdx++) {
+ if (fullname[jdx] == '-' || fullname[jdx] == '.' || fullname[jdx] == '\0') {
fullname[jdx] = '\0';
return &fullname[start];
break;
@@ -113,9 +113,12 @@ PUBLIC const char *GetBinderName() {
if (binderName) return binderName;
- // retrieve binder name from process name afb-name-trailer
- prctl(PR_GET_NAME, psName,NULL,NULL,NULL);
- binderName=GetMidleName(psName);
+ binderName= getenv("AFB_BINDER_NAME");
+ if (!binderName) {
+ // retrieve binder name from process name afb-name-trailer
+ prctl(PR_GET_NAME, psName,NULL,NULL,NULL);
+ binderName=(char*)GetMidleName(psName);
+ }
return binderName;
} \ No newline at end of file