X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Ftincd.c;h=ebee1b3bd932ee3ec427bf1b894a37f315e63a8f;hp=9e0ad4aabb87043268a8b0c559827273b11904d9;hb=eeb97e3ef4eb9089851f7b71d5393df24313c993;hpb=5e7c52610f8c8b9c38e437ef166a08372d5b8a61 diff --git a/src/tincd.c b/src/tincd.c index 9e0ad4aa..ebee1b3b 100644 --- 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.86 2003/08/17 09:03:30 guus Exp $ + $Id: tincd.c,v 1.10.4.88 2003/09/25 10:34:16 guus Exp $ */ #include "system.h" @@ -291,7 +291,7 @@ static bool keygen(int bits) char *filename; fprintf(stderr, _("Generating %d bits keys:\n"), bits); - rsa_key = RSA_generate_key(bits, 0xFFFF, indicator, NULL); + rsa_key = RSA_generate_key(bits, 0x10001, indicator, NULL); if(!rsa_key) { fprintf(stderr, _("Error during key generation!\n")); @@ -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; }