summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_pwd.inl
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-02-24 08:49:47 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-02-24 08:49:47 +0100
commite4957c0bc1bc03961b30cbbfd72dd6205f33cc24 (patch)
treea18d56970a94d7f759289e63a9c46ed35739241d /ACE/ace/OS_NS_pwd.inl
parent9f05fd32184d21307404ba5436bfd3bad247c5d5 (diff)
downloadATCD-e4957c0bc1bc03961b30cbbfd72dd6205f33cc24.tar.gz
Cleanup LynxOS4 support, fixes #1434
* ACE/ace/OS_NS_pwd.inl: * ACE/ace/OS_NS_signal.inl: * ACE/ace/README: * ACE/ace/Sig_Handler.cpp: * ACE/ace/config-lynxos.h: * ACE/ace/os_include/os_signal.h: * ACE/ace/os_include/os_stdlib.h: * ACE/ace/os_include/os_strings.h: * ACE/ace/os_include/os_unistd.h: * ACE/tests/Task_Ex_Test.cpp:
Diffstat (limited to 'ACE/ace/OS_NS_pwd.inl')
-rw-r--r--ACE/ace/OS_NS_pwd.inl8
1 files changed, 0 insertions, 8 deletions
diff --git a/ACE/ace/OS_NS_pwd.inl b/ACE/ace/OS_NS_pwd.inl
index ed75cfdc961..3353f649469 100644
--- a/ACE/ace/OS_NS_pwd.inl
+++ b/ACE/ace/OS_NS_pwd.inl
@@ -48,14 +48,6 @@ ACE_OS::getpwnam_r (const char *name,
ACE_UNUSED_ARG (bufsize);
ACE_UNUSED_ARG (result);
ACE_NOTSUP_RETURN (0);
-#elif defined (ACE_HAS_LYNXOS4_GETPWNAM_R)
- if (::getpwnam_r (pwd, const_cast<char*>(name), buffer, bufsize) == -1)
- {
- *result = 0;
- return -1;
- }
- *result = pwd;
- return 0;
#elif defined (ACE_HAS_STHREADS)
if (::getpwnam_r (name, pwd, buffer, bufsize) != 0)
{