Merge branch 'master' of ssh://gnunet.org/gnunet
[oweals/gnunet.git] / contrib / timeout_watchdog.c
index b28e8e833b7bf380040a5e42392757a669c4a81e..7a0376b9f3040ef1476802aaf97b243821c577bc 100644 (file)
@@ -1,6 +1,6 @@
 /*
      This file is part of GNUnet
-     (C) 2010 Christian Grothoff (and other contributing authors)
+     Copyright (C) 2010 GNUnet e.V.
 
      GNUnet is free software; you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published
@@ -14,8 +14,8 @@
 
      You should have received a copy of the GNU General Public License
      along with GNUnet; see the file COPYING.  If not, write to the
-     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-     Boston, MA 02111-1307, USA.
+     Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+     Boston, MA 02110-1301, USA.
 */
 
 /**
@@ -94,7 +94,8 @@ main (int argc, char *argv[])
     {
       /*  int setpgrp(pid_t pid, pid_t pgid); is not working on this machine */
       //setpgrp (0, pid_t gpid);
-      setpgid (0, gpid);
+      if (-1 != gpid)
+       setpgid (0, gpid);
       execvp (argv[2], &argv[2]);
       exit (1);
     }