aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Krjuchkov <denis@crazydev.net>2013-02-02 20:22:32 +0600
committerDenis Krjuchkov <denis@crazydev.net>2013-02-02 20:22:32 +0600
commit5bd1917705d15d23f0eb4625bcc1433ce9049a4b (patch)
treea90aaaad86c4bd70104fc44e34f0bae607f710ef
parent178c6c20cdbe95eba898a0d29c9aad2469f3dd9f (diff)
SongUpdate.cxx: use StatFile
-rw-r--r--src/SongUpdate.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/SongUpdate.cxx b/src/SongUpdate.cxx
index e0a8aca1..186512ff 100644
--- a/src/SongUpdate.cxx
+++ b/src/SongUpdate.cxx
@@ -27,6 +27,7 @@ extern "C" {
#include "Directory.hxx"
#include "Mapper.hxx"
#include "fs/Path.hxx"
+#include "fs/FileSystem.hxx"
#include "tag.h"
#include "input_stream.h"
#include "decoder_plugin.h"
@@ -111,7 +112,7 @@ song_file_update(struct song *song)
song->tag = NULL;
}
- if (stat(path_fs.c_str(), &st) < 0 || !S_ISREG(st.st_mode)) {
+ if (!StatFile(path_fs, st) || !S_ISREG(st.st_mode)) {
return false;
}