summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-01-10 21:29:05 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-01-10 21:29:05 +0000
commit8b5e471207e05a28877cb15824786ecd58587f16 (patch)
tree9e200eb874b10f4204b2ce083db3a5b2d0a23b9c /sbin
parent90a2db57f03eb7a78ace23541515fea4def34ab4 (diff)
Get logging priorities right.
Diffstat (limited to 'sbin')
-rw-r--r--sbin/isakmpd/ipsec.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sbin/isakmpd/ipsec.c b/sbin/isakmpd/ipsec.c
index 917ab8590b7..9bbf8f43565 100644
--- a/sbin/isakmpd/ipsec.c
+++ b/sbin/isakmpd/ipsec.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ipsec.c,v 1.33 2001/01/10 19:48:29 angelos Exp $ */
+/* $OpenBSD: ipsec.c,v 1.34 2001/01/10 21:29:04 angelos Exp $ */
/* $EOM: ipsec.c,v 1.143 2000/12/11 23:57:42 niklas Exp $ */
/*
@@ -1312,7 +1312,7 @@ ipsec_handle_leftover_payload (struct message *msg, u_int8_t type,
if (spisz != sizeof (u_int32_t))
{
- LOG_DBG ((LOG_SA, 40,
+ LOG_DBG ((LOG_SA, 50,
"ipsec_handle_leftover_payload: SPI size %d in DELETE "
"payload unsupported", spisz));
return -1;
@@ -1320,7 +1320,7 @@ ipsec_handle_leftover_payload (struct message *msg, u_int8_t type,
if (nspis == 0)
{
- LOG_DBG ((LOG_SA, 40, "ipsec_handle_leftover_payload: message "
+ LOG_DBG ((LOG_SA, 60, "ipsec_handle_leftover_payload: message "
"specified zero SPIs, ignoring"));
return -1;
}
@@ -1328,7 +1328,7 @@ ipsec_handle_leftover_payload (struct message *msg, u_int8_t type,
spis = (u_int32_t *) malloc (nspis * spisz);
if (spis == NULL)
{
- LOG_DBG ((LOG_SA, 70,
+ LOG_DBG ((LOG_SA, 50,
"ipsec_handle_leftover_payload: "
"DELETE failed to allocate %d SPIs of %d bytes each",
nspis, spisz));
@@ -1344,7 +1344,7 @@ ipsec_handle_leftover_payload (struct message *msg, u_int8_t type,
spis[i], proto);
if (sa == NULL)
{
- LOG_DBG ((LOG_SA, 30, "ipsec_handle_leftover_payload: "
+ LOG_DBG ((LOG_SA, 40, "ipsec_handle_leftover_payload: "
"could not locate SA (SPI %08x, proto %u)",
spis[i], proto));
continue;