X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=config.c;h=1a74f23908ea7f6f7042ded3170880f920abfe09;hb=acb229813f5845e8b38bea56870211319887f3b4;hp=4c4ed7dd35f09eb023d6732001ccb8c5aecde270;hpb=9dc64e1e291d6518da0a918105c5bf7b1c603dd5;p=staging%2Fagl-audio-plugin.git diff --git a/config.c b/config.c index 4c4ed7d..1a74f23 100644 --- a/config.c +++ b/config.c @@ -21,7 +21,7 @@ */ #include "config.h" -const char *pa_config_file_get_path (const char *dir, const char *file, char *buf, size_t len) +const char *agl_config_file_get_path (const char *dir, const char *file, char *buf, size_t len) { pa_assert (file); pa_assert (buf); @@ -32,7 +32,7 @@ const char *pa_config_file_get_path (const char *dir, const char *file, char *bu return buf; } -bool pa_config_parse_file (struct userdata *u, const char *path) +bool agl_config_parse_file (struct userdata *u, const char *path) { bool success; @@ -42,7 +42,7 @@ bool pa_config_parse_file (struct userdata *u, const char *path) return false; else { pa_log_info ("parsing configuration file '%s'", path); - success = pa_config_dofile (u, path); + success = agl_config_dofile (u, path); } if (!success) { @@ -53,7 +53,7 @@ bool pa_config_parse_file (struct userdata *u, const char *path) return success; } -bool pa_config_dofile (struct userdata *u, const char *path) +bool agl_config_dofile (struct userdata *u, const char *path) { /* TODO */ return false;