summaryrefslogtreecommitdiffstats
path: root/lib/Utils/DebugDump.cpp
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-07-24 12:12:59 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-07-24 12:12:59 +0200
commit280334787ea74be1c5234849672c69dbfdb2f201 (patch)
tree2781aaed86df59efad57a608a86892a190efa91e /lib/Utils/DebugDump.cpp
parent337fc151e4b2682de4c3b2496045e4054080b844 (diff)
downloadabrt-280334787ea74be1c5234849672c69dbfdb2f201.tar.gz
abrt-280334787ea74be1c5234849672c69dbfdb2f201.tar.xz
abrt-280334787ea74be1c5234849672c69dbfdb2f201.zip
remove GetGIDFromUID (two copies): getpwuid does the same
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'lib/Utils/DebugDump.cpp')
-rw-r--r--lib/Utils/DebugDump.cpp24
1 files changed, 3 insertions, 21 deletions
diff --git a/lib/Utils/DebugDump.cpp b/lib/Utils/DebugDump.cpp
index 6fd135e3..465b7ab7 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;