diff options
author | Ondrej Filip <feela@network.cz> | 2004-06-04 18:56:54 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2004-06-04 18:56:54 +0200 |
commit | 7a03e29d5c7ff07c907ed0d4c4f1c226eba5941d (patch) | |
tree | f6f81126775f4896518861c4493e4e71045af924 /proto/ospf | |
parent | fb9bf6888c75adb88e5a8818161b89b207cf1f9f (diff) | |
download | bird-7a03e29d5c7ff07c907ed0d4c4f1c226eba5941d.tar bird-7a03e29d5c7ff07c907ed0d4c4f1c226eba5941d.zip |
Better log() usage.
Diffstat (limited to 'proto/ospf')
-rw-r--r-- | proto/ospf/lsack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/ospf/lsack.c b/proto/ospf/lsack.c index 94f61d8..d2f20bf 100644 --- a/proto/ospf/lsack.c +++ b/proto/ospf/lsack.c @@ -153,7 +153,7 @@ ospf_lsack_receive(struct ospf_lsack_packet *ps, struct proto *p, if ((nolsa < 1) || ((lenn - sizeof(struct ospf_lsack_packet)) != (nolsa * sizeof(struct ospf_lsa_header)))) { - log("%s: Received corrupted LS ack from %I", p->name, n->ip); + log(L_ERR "Received corrupted LS ack from %I", n->ip); return; } |