search for: use_posix_pthreads

Displaying 1 result from an estimated 1 matches for "use_posix_pthreads".

Did you mean: duse_posix_threads
2004 Feb 27
1
Minor Thread Bug In OpenSSH 3.8p1
...by do_pam_account() in sshpam_thread(). However, those variable are only exported if USE_POSIX_THREADS is NOT set. Consequently, import_environments() get upset when there's nothing in the buffer when that macro IS set. I have chosen to comment out the guts of routine import_environments() if USE_POSIX_PTHREADS is not defined as a solution, reasoning that this will also work if that routine a called by other parts of the code in some later version. I could have just commented out the single call to that routine in sshpam_query() as an alternative. Either way will work. diff -r -c old/auth-pam.c new/auth-...