diff options
Diffstat (limited to 'lib/Utils')
| -rw-r--r-- | lib/Utils/DebugDump.cpp | 24 | ||||
| -rw-r--r-- | lib/Utils/DebugDump.h | 1 |
2 files changed, 3 insertions, 22 deletions
diff --git a/lib/Utils/DebugDump.cpp b/lib/Utils/DebugDump.cpp index 6fd135e..465b7ab 100644 --- a/lib/Utils/DebugDump.cpp +++ b/lib/Utils/DebugDump.cpp @@ -178,25 +178,6 @@ void CDebugDump::UnLock() } } -std::string CDebugDump::GetGIDFromUID(const std::string& pUID) -{ - std::stringstream ret; - struct passwd* pw; - while (( pw = getpwent()) != NULL) - { - if (pw->pw_uid == atoi(pUID.c_str())) - { - ret << pw->pw_gid; - } - } - setpwent(); - if (ret.str() == "") - { - ret << "-1"; - } - return ret.str(); -} - void CDebugDump::Create(const std::string& pDir, const std::string& pUID) { if (m_bOpened) @@ -225,8 +206,9 @@ void CDebugDump::Create(const std::string& pDir, const std::string& pUID) m_bOpened = false; throw CABRTException(EXCEP_DD_OPEN, "CDebugDump::Create(): Cannot change permissions, dir: " + pDir); } - std::string GID = GetGIDFromUID(pUID); - if (chown(m_sDebugDumpDir.c_str(), atoi(pUID.c_str()), atoi(GID.c_str())) == -1) + uid_t uid = atoi(pUID.c_str()); + struct passwd* pw = getpwuid(uid); + if (chown(m_sDebugDumpDir.c_str(), uid, pw ? pw->pw_gid : uid) == -1) { UnLock(); m_bOpened = false; diff --git a/lib/Utils/DebugDump.h b/lib/Utils/DebugDump.h index 3b47956..a09a913 100644 --- a/lib/Utils/DebugDump.h +++ b/lib/Utils/DebugDump.h @@ -66,7 +66,6 @@ class CDebugDump bool IsTextFile(const std::string& pName); std::string RemoveBackSlashes(const std::string& pDir); - std::string GetGIDFromUID(const std::string& pUID); public: CDebugDump(); |
