search for: have_netware

Displaying 3 results from an estimated 3 matches for "have_netware".

2003 Mar 17
1
Changes to OpenSSH for NetWare
I have attached a diff file with the changes to existing OpenSSH source files to accomodate the NetWare platform. All changes are #ifdef wrapped using one in one of the following defines: HAVE_NETWARE - Building for NetWare USE_EDIR - Using eDirectory(TM) for authentication. NICI - Using Novell International Cryptography Infrastructure (NICI) I have successfully built the OpenSSH-3.5p1 source with my changes on RedHat 7.2 and 8.0. Regards, ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Vince Bri...
2009 Mar 24
0
Issue with child process exits
...ef _UNICOS mysignal(SIGCHLD, sigchld_handler); #endif notify_parent(); errno = save_errno; } As far as I can tell the primary purpose of this method is to set a value for child_terminated which is referenced by the following method: static void collect_children(void) { #ifndef HAVE_NETWARE pid_t pid; sigset_t oset, nset; int status; /* block SIGCHLD while we check for dead children */ sigemptyset(&nset); sigaddset(&nset, SIGCHLD); sigprocmask(SIG_BLOCK, &nset, &oset); if (child_terminated) { while ((pid = waitpid(-1, &status, WNOHANG)) > 0 || (pid &l...
2003 May 22
0
Changes to OpenSSH for NetWare
I have attached the diff file with the changes to existing OpenSSH source files to accomodate the NetWare platform. All changes are #ifdef wrapped using one in one of the following defines: HAVE_NETWARE - Building for NetWare USE_EDIR - Using eDirectory(TM) for authentication. NICI - Using Novell International Cryptography Infrastructure (NICI) I have successfully built the OpenSSH-3.5p1 source with my changes on RedHat 7.2 and 8.0. If an inline text diff would be easier to work with, I can pr...