X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fprocess.c;h=37b3186e68508424c3e23a5b358a27103c3a2a1c;hp=bf3d6b74f36e38c1c3547ed257264dd7fcef5468;hb=68e23b1c9e69b2a218b3be821ad1ba3b3b6a64f2;hpb=8ed27d40f358581d021319cc26313c9f6ddf9a71 diff --git a/src/process.c b/src/process.c index bf3d6b74..37b3186e 100644 --- a/src/process.c +++ b/src/process.c @@ -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.23 2001/07/24 20:03:40 guus Exp $ + $Id: process.c,v 1.1.2.24 2001/09/01 12:36:53 guus Exp $ */ #include "config.h" @@ -121,7 +121,7 @@ cp /* kill older tincd for this net */ -int kill_other(void) +int kill_other(int signal) { int pid; cp @@ -136,7 +136,7 @@ cp errno = 0; /* No error, sometimes errno is only changed on error */ /* ESRCH is returned when no process with that pid is found */ - if(kill(pid, SIGTERM) && errno == ESRCH) + if(kill(pid, signal) && errno == ESRCH) fprintf(stderr, _("Removing stale lock file.\n")); remove_pid(pidfilename); cp