]> git.sur5r.net Git - openldap/blobdiff - libraries/liblutil/signal.c
Add valx arg to config_parse_add - indicate which value in the current
[openldap] / libraries / liblutil / signal.c
index 230a265b95641431f1288caaad04440ddbb35400..67bf6bf7ed3be66ae968416c4da8475ebdef35af 100644 (file)
@@ -1,19 +1,27 @@
 /* $OpenLDAP$ */
-/*
- * Copyright 2000 The OpenLDAP Foundation
- * COPYING RESTRICTIONS APPLY.  See COPYRIGHT File in top level directory
- * of this package for details.
+/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
+ *
+ * Copyright 1998-2006 The OpenLDAP Foundation.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted only as authorized by the OpenLDAP
+ * Public License.
+ *
+ * A copy of this license is available in the file LICENSE in the
+ * top-level directory of the distribution or, alternatively, at
+ * <http://www.OpenLDAP.org/license.html>.
  */
 
 #include "portable.h"
 
 #ifdef HAVE_SIGACTION
+#include <ac/string.h>
 #include <ac/signal.h>
 
 lutil_sig_t
 lutil_sigaction(int sig, lutil_sig_t func)
 {
-       int rc;
        struct sigaction action, oaction;
 
        memset( &action, '\0', sizeof(action) );
@@ -21,7 +29,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 ) {