diff options
author | Max Kellermann <max@duempel.org> | 2009-03-15 18:23:00 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-03-15 18:23:00 +0100 |
commit | a899c210b9de405a232f0cd102ca9409ef89518b (patch) | |
tree | 3b42f6d527cb92c8f1c3c1592541511ce14d283d /src/permission.c | |
parent | 9e30dfb9c195dab50c4d0173885a94e7b81d45bd (diff) | |
download | mpd-a899c210b9de405a232f0cd102ca9409ef89518b.tar.gz mpd-a899c210b9de405a232f0cd102ca9409ef89518b.tar.xz mpd-a899c210b9de405a232f0cd102ca9409ef89518b.zip |
log: removed DEBUG() and FATAL()
Use GLib the logging functions g_debug(), g_error() instead.
Diffstat (limited to '')
-rw-r--r-- | src/permission.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/permission.c b/src/permission.c index da51d4b80..7df4e27fc 100644 --- a/src/permission.c +++ b/src/permission.c @@ -19,7 +19,6 @@ #include "permission.h" #include "conf.h" -#include "log.h" #include <glib.h> @@ -59,7 +58,7 @@ static unsigned parsePermissions(const char *string) } else if (strcmp(temp, PERMISSION_ADMIN_STRING) == 0) { permission |= PERMISSION_ADMIN; } else { - FATAL("unknown permission \"%s\"\n", temp); + g_error("unknown permission \"%s\"", temp); } } @@ -90,10 +89,10 @@ void initPermissions(void) strchr(param->value, PERMISSION_PASSWORD_CHAR); if (separator == NULL) - FATAL("\"%c\" not found in password string " - "\"%s\", line %i\n", - PERMISSION_PASSWORD_CHAR, - param->value, param->line); + g_error("\"%c\" not found in password string " + "\"%s\", line %i", + PERMISSION_PASSWORD_CHAR, + param->value, param->line); password = g_strndup(param->value, separator - param->value); |