summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1999-04-19 21:09:37 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1999-04-19 21:09:37 +0000
commit1f64dc41c9dfc901697a2cd2edd5d0f3d9279231 (patch)
tree2bcd8aa679f8f2dc2d9c43f1ea8c34d5a35f9e13 /sbin
parent215dc0a82a679c56cc9305a54a9650721fbfa7ef (diff)
./isakmpd.c: Merge with EOM 1.31
Style. alloc error reporting. Math error propagation. Allocate right sizes. Log any SIGHUPs looking our way. 1999 copyrights
Diffstat (limited to 'sbin')
-rw-r--r--sbin/isakmpd/isakmpd.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/sbin/isakmpd/isakmpd.c b/sbin/isakmpd/isakmpd.c
index a722aec25cd..ed146b17d1e 100644
--- a/sbin/isakmpd/isakmpd.c
+++ b/sbin/isakmpd/isakmpd.c
@@ -1,8 +1,8 @@
-/* $OpenBSD: isakmpd.c,v 1.9 1999/03/24 14:43:37 niklas Exp $ */
-/* $EOM: isakmpd.c,v 1.28 1999/03/24 11:01:06 niklas Exp $ */
+/* $OpenBSD: isakmpd.c,v 1.10 1999/04/19 21:09:36 niklas Exp $ */
+/* $EOM: isakmpd.c,v 1.31 1999/04/17 23:20:30 niklas Exp $ */
/*
- * Copyright (c) 1998 Niklas Hallqvist. All rights reserved.
+ * Copyright (c) 1998, 1999 Niklas Hallqvist. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -125,7 +125,7 @@ parse_args (int argc, char *argv[])
exit (1);
break;
case 'r':
- srandom (strtoul (optarg, NULL, 0));
+ srandom (strtoul (optarg, 0, 0));
regrand = 1;
break;
case 'R':
@@ -144,6 +144,9 @@ parse_args (int argc, char *argv[])
static void
reinit (void)
{
+ /* XXX Remove log message later on? */
+ log_debug (LOG_MISC, 80, "reinit: SIGHUP recieved, reinitializing.");
+
/* Reread config file. */
conf_init ();