diff options
author | Hans-Joerg Hoexer <hshoexer@cvs.openbsd.org> | 2006-08-22 17:34:32 +0000 |
---|---|---|
committer | Hans-Joerg Hoexer <hshoexer@cvs.openbsd.org> | 2006-08-22 17:34:32 +0000 |
commit | 7494ab6c1b800af4a75410a82729e68c4295ce60 (patch) | |
tree | 640f58777359c704c1a6f5014fcc77d6223e7e04 | |
parent | 083a1d5623a0cdb00edcd46ec695b61be7959f2f (diff) |
correct function name in log message.
-rw-r--r-- | sbin/isakmpd/connection.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/isakmpd/connection.c b/sbin/isakmpd/connection.c index c631fe79162..bc972da9d74 100644 --- a/sbin/isakmpd/connection.c +++ b/sbin/isakmpd/connection.c @@ -1,4 +1,4 @@ -/* $OpenBSD: connection.c,v 1.32 2005/05/04 10:05:01 hshoexer Exp $ */ +/* $OpenBSD: connection.c,v 1.33 2006/08/22 17:34:31 hshoexer Exp $ */ /* $EOM: connection.c,v 1.28 2000/11/23 12:21:18 niklas Exp $ */ /* @@ -245,7 +245,7 @@ connection_passive_lookup_by_ids(u_int8_t *id1, u_int8_t *id2) if (compare_ids(id1, conn->local_id, conn->local_sz) == 0 || compare_ids(id2, conn->local_id, conn->local_sz) == 0) { LOG_DBG((LOG_MISC, 60, - "connection passive_lookup_by_ids: returned \"%s\"" + "connection_passive_lookup_by_ids: returned \"%s\"" " only matched local id", conn->name)); return conn->name; } |