summaryrefslogtreecommitdiffstats
path: root/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'config.c')
-rw-r--r--config.c8
1 files changed, 4 insertions, 4 deletions
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;