diff options
Diffstat (limited to 'ACE/examples/APG/Processes/Spawn.cpp')
-rw-r--r-- | ACE/examples/APG/Processes/Spawn.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/examples/APG/Processes/Spawn.cpp b/ACE/examples/APG/Processes/Spawn.cpp index 5ecf6ff90a2..bbcc75f5bf5 100644 --- a/ACE/examples/APG/Processes/Spawn.cpp +++ b/ACE/examples/APG/Processes/Spawn.cpp @@ -161,7 +161,7 @@ public: { ACE_TRACE ("Slave::showWho"); #if !defined (ACE_LACKS_PWD_FUNCTIONS) - passwd *pw = ACE_OS::getpwuid (ACE_OS::geteuid ()); + passwd *pw = ::getpwuid (ACE_OS::geteuid ()); ACE_DEBUG ((LM_INFO, ACE_TEXT ("(%P) Running this process as:%s\n"), pw->pw_name)); |