- Write pidfile AFTER detaching...
authorGuus Sliepen <guus@tinc-vpn.org>
Wed, 22 Nov 2000 19:14:09 +0000 (19:14 +0000)
committerGuus Sliepen <guus@tinc-vpn.org>
Wed, 22 Nov 2000 19:14:09 +0000 (19:14 +0000)
- Minor cleanups

lib/rbl.c
src/process.c
src/tincd.c

index ab35aee62151d385f8e4bf0d7ad19f8ab4edc857..1a40535051a5b3704ff9fe0d5882cf3272555c00 100644 (file)
--- a/lib/rbl.c
+++ b/lib/rbl.c
     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>
index 264b21dc349345ada752b398aa3e6cfbac315a1a..29e49fa4f0ea5102d66539e45d54e73d7229d896 100644 (file)
@@ -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)
index d2ce14d03fb00f0a4d566f7f8f01b47c9b5b3371..18791cc8b16140c632538845bde3915da92bc969 100644 (file)
@@ -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' },