aboutsummaryrefslogtreecommitdiffstats
path: root/src/PlaylistFile.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-02-17 23:29:08 +0100
committerMax Kellermann <max@duempel.org>2014-02-18 09:18:42 +0100
commit2b21312b367bbde7473e95093fbebbf79e693df1 (patch)
tree2878849657a8a525b8a72e7bc3f3bd57415cb82d /src/PlaylistFile.cxx
parent3a818b6d45bc6b01c0092afc3f420ced668e9967 (diff)
downloadmpd-2b21312b367bbde7473e95093fbebbf79e693df1.tar.gz
mpd-2b21312b367bbde7473e95093fbebbf79e693df1.tar.xz
mpd-2b21312b367bbde7473e95093fbebbf79e693df1.zip
util/StringUtil: add StringEndsWith()
Replaces g_str_has_suffix().
Diffstat (limited to 'src/PlaylistFile.cxx')
-rw-r--r--src/PlaylistFile.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/PlaylistFile.cxx b/src/PlaylistFile.cxx
index a729ac8a0..f5ac2735f 100644
--- a/src/PlaylistFile.cxx
+++ b/src/PlaylistFile.cxx
@@ -36,11 +36,10 @@
#include "fs/Charset.hxx"
#include "fs/FileSystem.hxx"
#include "fs/DirectoryReader.hxx"
+#include "util/StringUtil.hxx"
#include "util/UriUtil.hxx"
#include "util/Error.hxx"
-#include <glib.h>
-
#include <assert.h>
#include <sys/stat.h>
#include <string.h>
@@ -147,7 +146,7 @@ LoadPlaylistFileInfo(PlaylistInfo &info,
memchr(name_fs_str, '\n', name_length) != nullptr)
return false;
- if (!g_str_has_suffix(name_fs_str, PLAYLIST_FILE_SUFFIX))
+ if (!StringEndsWith(name_fs_str, PLAYLIST_FILE_SUFFIX))
return false;
const auto path_fs = AllocatedPath::Build(parent_path_fs, name_fs);