From 96019f4a025bfd918673f7c628f92423aef72276 Mon Sep 17 00:00:00 2001 From: Denis Krjuchkov Date: Sun, 5 May 2013 14:58:07 +0600 Subject: UpdateWalk, ExcludeList: use Path, file system API, DirectoryReader, log in UTF8 --- src/ExcludeList.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/ExcludeList.cxx') diff --git a/src/ExcludeList.cxx b/src/ExcludeList.cxx index 0daa432dd..ed04b8d38 100644 --- a/src/ExcludeList.cxx +++ b/src/ExcludeList.cxx @@ -63,14 +63,14 @@ ExcludeList::LoadFile(const Path &path_fs) } bool -ExcludeList::Check(const char *name_fs) const +ExcludeList::Check(const Path &name_fs) const { - assert(name_fs != NULL); + assert(!name_fs.IsNull()); /* XXX include full path name in check */ for (const auto &i : patterns) - if (i.Check(name_fs)) + if (i.Check(name_fs.c_str())) return true; return false; -- cgit v1.2.3