summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_stdio.inl
diff options
context:
space:
mode:
authorAbdullah Sowayan <sowayan@users.noreply.github.com>2007-09-21 16:35:37 +0000
committerAbdullah Sowayan <sowayan@users.noreply.github.com>2007-09-21 16:35:37 +0000
commitd2695527a41d34b830acee1fd7d253fd0fc887b7 (patch)
tree841cff878704f4e9b1edf29ad40894719e76cff1 /ACE/ace/OS_NS_stdio.inl
parent342dc444d32c8a5268e4e2035b8c98cfbd977ed0 (diff)
downloadATCD-d2695527a41d34b830acee1fd7d253fd0fc887b7.tar.gz
Fri Sep 21 16:34:47 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com>
Diffstat (limited to 'ACE/ace/OS_NS_stdio.inl')
-rw-r--r--ACE/ace/OS_NS_stdio.inl6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/OS_NS_stdio.inl b/ACE/ace/OS_NS_stdio.inl
index ecd0d725abd..ecae695c99a 100644
--- a/ACE/ace/OS_NS_stdio.inl
+++ b/ACE/ace/OS_NS_stdio.inl
@@ -430,15 +430,15 @@ ACE_OS::cuserid (char *user, size_t maxlen)
struct passwd *pw = 0;
// Make sure the file pointer is at the beginning of the password file
- ::setpwent ();
+ ACE_OS::setpwent ();
// Should use ACE_OS::setpwent() but I didn't want to move this
// method after it.
// Use the effective user ID to determine the user name.
- pw = ::getpwuid (::geteuid ());
+ pw = ::getpwuid (ACE_OS::geteuid ());
// Make sure the password file is closed.
- ::endpwent ();
+ ACE_OS::endpwent ();
if (pw == 0)
{