- Write pidfile AFTER detaching...
- Minor cleanups
This commit is contained in:
parent
f8b4a000d0
commit
394ed3fb17
3 changed files with 6 additions and 12 deletions
|
@ -17,14 +17,13 @@
|
|||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
$Id: rbl.c,v 1.1.2.10 2000/11/22 18:54:07 guus Exp $
|
||||
$Id: rbl.c,v 1.1.2.11 2000/11/22 19:14:08 guus Exp $
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <xalloc.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "rbl.h"
|
||||
#include <system.h>
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
$Id: process.c,v 1.1.2.9 2000/11/22 17:49:16 zarq Exp $
|
||||
$Id: process.c,v 1.1.2.10 2000/11/22 19:14:08 guus Exp $
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
@ -145,12 +145,12 @@ int detach(void)
|
|||
cp
|
||||
setup_signals();
|
||||
|
||||
if(write_pidfile())
|
||||
return -1;
|
||||
|
||||
if(do_detach)
|
||||
daemon(0, 0);
|
||||
|
||||
if(write_pidfile())
|
||||
return -1;
|
||||
|
||||
openlog(identname, LOG_CONS | LOG_PID, LOG_DAEMON);
|
||||
|
||||
if(debug_lvl > DEBUG_NOTHING)
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
$Id: tincd.c,v 1.10.4.33 2000/11/22 16:19:07 zarq Exp $
|
||||
$Id: tincd.c,v 1.10.4.34 2000/11/22 19:14:09 guus Exp $
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
@ -94,11 +94,6 @@ char **g_argv; /* a copy of the cmdline arguments */
|
|||
char **environment; /* A pointer to the environment on
|
||||
startup */
|
||||
|
||||
void cleanup_and_exit(int);
|
||||
int kill_other(void);
|
||||
void make_names(void);
|
||||
int write_pidfile(void);
|
||||
|
||||
static struct option const long_options[] =
|
||||
{
|
||||
{ "config", required_argument, NULL, 'c' },
|
||||
|
|
Loading…
Reference in a new issue