From: Mu-Woong Lee Date: Tue, 28 Mar 2017 13:10:37 +0000 (+0900) Subject: Replace PathUtil.h with ServerUtil.h X-Git-Tag: submit/tizen/20170413.031950^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6e884eb982397eed9ea06e90c67202bd4cdd3852;p=platform%2Fcore%2Fcontext%2Fcontext-service.git Replace PathUtil.h with ServerUtil.h Change-Id: I7d002f2a818a3e7281fe291ad5782576120097ec Signed-off-by: Mu-Woong Lee --- diff --git a/src/server/ActiveUserMonitor.cpp b/src/server/ActiveUserMonitor.cpp index 526b4ba..0da7cc1 100644 --- a/src/server/ActiveUserMonitor.cpp +++ b/src/server/ActiveUserMonitor.cpp @@ -15,7 +15,7 @@ */ #include -#include +#include #include "ActiveUserMonitor.h" #define ROOT_UID 0 @@ -115,7 +115,7 @@ void ActiveUserMonitor::__onUserRemoved(GDBusConnection* conn, const gchar* send static bool __isUserDirectoryReady(uid_t uid) { - std::string dbDir = PathUtil::getUserPath(uid, TZ_USER_DB, EMPTY_STR); + std::string dbDir = util::getUserPath(uid, TZ_USER_DB, EMPTY_STR); DIR* dir = opendir(dbDir.c_str()); if (!dir) { _W("User not ready");