projects
/
tinc
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0dba262
)
Remove pidfile when exitting.
author
Guus Sliepen
<guus@tinc-vpn.org>
Mon, 8 Sep 2003 21:52:47 +0000
(21:52 +0000)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Mon, 8 Sep 2003 21:52:47 +0000
(21:52 +0000)
src/tincd.c
patch
|
blob
|
history
diff --git
a/src/tincd.c
b/src/tincd.c
index
9e0ad4a
..
299e516
100644
(file)
--- a/
src/tincd.c
+++ b/
src/tincd.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: tincd.c,v 1.10.4.8
6 2003/08/17 09:03:30
guus Exp $
+ $Id: tincd.c,v 1.10.4.8
7 2003/09/08 21:52:47
guus Exp $
*/
#include "system.h"
@@
-506,5
+506,10
@@
int main2(int argc, char **argv)
dump_device_stats();
logger(LOG_NOTICE, _("Terminating"));
+
+#ifndef HAVE_MINGW
+ remove_pid(pidfilename);
+#endif
+
return status;
}