diff options
author | Hans-Joerg Hoexer <hshoexer@cvs.openbsd.org> | 2007-07-31 20:59:34 +0000 |
---|---|---|
committer | Hans-Joerg Hoexer <hshoexer@cvs.openbsd.org> | 2007-07-31 20:59:34 +0000 |
commit | ca8b394d13f63f9b5f90b2b767bc6f1ee20edf6a (patch) | |
tree | 8b34f2ddad2f31da299e0cd591b1674a972cfc56 /sbin | |
parent | 6130e1ee011872106c0fa31f2b5267bc6c2105ee (diff) |
Use correct function name in log message. Noticed by Igor Zinovk
zinovik@cs.karelia.ru. Thanks!
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/isakmpd/ipsec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/isakmpd/ipsec.c b/sbin/isakmpd/ipsec.c index 88c563d45e6..ca531d396d0 100644 --- a/sbin/isakmpd/ipsec.c +++ b/sbin/isakmpd/ipsec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipsec.c,v 1.128 2007/04/16 13:01:39 moritz Exp $ */ +/* $OpenBSD: ipsec.c,v 1.129 2007/07/31 20:59:33 hshoexer Exp $ */ /* $EOM: ipsec.c,v 1.143 2000/12/11 23:57:42 niklas Exp $ */ /* @@ -1935,7 +1935,7 @@ ipsec_get_id(char *section, int *id, struct sockaddr **addr, return -1; } if (text2sockaddr(netmask, NULL, mask, af, 1)) { - log_print("ipsec_id_build: invalid section %s " + log_print("ipsec_get_id: invalid section %s " "network %s", section, netmask); free(*addr); return -1; |