diff options
author | 2001-04-07 20:36:47 +0000 | |
---|---|---|
committer | 2001-04-07 20:36:47 +0000 | |
commit | b605e184e6bd7a6fc566fa9ecb90e3287d843fe1 (patch) | |
tree | 5a7da9d0b6e1168176cde764720015a159c317db | |
parent | $OpenBSD$ here too. (diff) | |
download | wireguard-openbsd-b605e184e6bd7a6fc566fa9ecb90e3287d843fe1.tar.xz wireguard-openbsd-b605e184e6bd7a6fc566fa9ecb90e3287d843fe1.zip |
Add missing filename argument.
-rw-r--r-- | sbin/isakmpd/isakmpd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/isakmpd/isakmpd.c b/sbin/isakmpd/isakmpd.c index 7eb0b7caeef..3647801d41e 100644 --- a/sbin/isakmpd/isakmpd.c +++ b/sbin/isakmpd/isakmpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isakmpd.c,v 1.27 2001/01/27 12:03:33 niklas Exp $ */ +/* $OpenBSD: isakmpd.c,v 1.28 2001/04/07 20:36:47 ho Exp $ */ /* $EOM: isakmpd.c,v 1.54 2000/10/05 09:28:22 niklas Exp $ */ /* @@ -256,7 +256,7 @@ report (void) if (!report) { - log_error ("fopen (\"%s\", \"w\") failed"); + log_error ("fopen (\"%s\", \"w\") failed", report_file); return; } |