X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslurpd%2Fadmin.c;h=b34cce996f71d831283e6b5094da7410271fa550;hb=a070e6c05ff054ea047defc78fe60ec2d67c4565;hp=6a58b40c4c34f044f7072fc9dea3faf174b47469;hpb=42e0d83cb3a1a1c5b25183f1ab74ce7edbe25de7;p=openldap diff --git a/servers/slurpd/admin.c b/servers/slurpd/admin.c index 6a58b40c4c..b34cce996f 100644 --- a/servers/slurpd/admin.c +++ b/servers/slurpd/admin.c @@ -1,5 +1,18 @@ -/* - * Copyright (c) 1996 Regents of the University of Michigan. +/* $OpenLDAP$ */ +/* This work is part of OpenLDAP Software . + * + * 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 file LICENSE in the + * top-level directory of the distribution or, alternatively, at + * . + */ +/* Portions Copyright (c) 1996 Regents of the University of Michigan. * All rights reserved. * * Redistribution and use in source and binary forms are permitted @@ -9,15 +22,22 @@ * software without specific prior written permission. This software * is provided ``as is'' without express or implied warranty. */ +/* ACKNOWLEDGEMENTS: + * This work was originally developed by the University of Michigan + * (as part of U-MICH LDAP). + */ /* * admin.c - routines for performing administrative tasks, e.g. on-the-fly * reconfiguration of slurpd. */ +#include "portable.h" #include -#include +#include + +#include #include "slurp.h" #include "globals.h" @@ -33,9 +53,9 @@ * slurpd receives a USR2 signal, it will dump its replication * queue to the disk file given by SLURPD_DUMPFILE. */ -void -do_admin() +RETSIGTYPE +do_admin( int sig ) { sglob->rq->rq_dump( sglob->rq ); - (void) SIGNAL( SIGUSR2, (void *) do_admin ); + (void) SIGNAL_REINSTALL( sig, do_admin ); }