aboutsummaryrefslogtreecommitdiffstats
path: root/src/client_file.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2012-10-04 09:34:48 +0200
committerMax Kellermann <max@duempel.org>2012-10-04 10:31:53 +0200
commitefbf184fe80c61f7666ded3342fcb97c1b770758 (patch)
tree82a7e8abd83e7edd68a1983ca16daae6753d625e /src/client_file.c
parentdd577fb857141bc0d8bfa094a4697163b17deaad (diff)
downloadmpd-efbf184fe80c61f7666ded3342fcb97c1b770758.tar.gz
mpd-efbf184fe80c61f7666ded3342fcb97c1b770758.tar.xz
mpd-efbf184fe80c61f7666ded3342fcb97c1b770758.zip
PlaylistFile, client_file, tag_id3: don't use g_file_error_quark()
g_file_error_quark() is meant to be used with the GFileError enum which does not correspond with errno, but must be converted with g_file_error_from_errno(). At the same time, this removes g_strerror() use for g_file_error_quark().
Diffstat (limited to '')
-rw-r--r--src/client_file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client_file.c b/src/client_file.c
index 2ee433308..5214ff019 100644
--- a/src/client_file.c
+++ b/src/client_file.c
@@ -20,6 +20,7 @@
#include "client_file.h"
#include "client.h"
#include "ack.h"
+#include "io_error.h"
#include <sys/stat.h>
#include <sys/types.h>
@@ -53,8 +54,7 @@ client_allow_file(const struct client *client, const char *path_fs,
struct stat st;
if (stat(path_fs, &st) < 0) {
- g_set_error(error_r, g_file_error_quark(), errno,
- "%s", g_strerror(errno));
+ set_error_errno(error_r);
return false;
}