mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 09:39:45 -05:00
Error in setting sa_flags (was never set)
This commit is contained in:
parent
df57978436
commit
e717717a8b
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ lutil_sigaction(int sig, lutil_sig_t func)
|
|||
action.sa_handler = func;
|
||||
sigemptyset( &action.sa_mask );
|
||||
#ifdef SA_RESTART
|
||||
action.sa_flags != SA_RESTART;
|
||||
action.sa_flags |= SA_RESTART;
|
||||
#endif
|
||||
|
||||
if( sigaction( sig, &action, &oaction ) != 0 ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue