diff options
author | paul <paul> | 2006-01-17 17:49:53 +0000 |
---|---|---|
committer | paul <paul> | 2006-01-17 17:49:53 +0000 |
commit | 7a492f65bd0d95e36d0465fbc59e0bf3fae90560 (patch) | |
tree | 0df1ffe8efc726f870deb9f60e0da5fe53836edc /ospfd/ospf_packet.c | |
parent | 1acde4f51aeac37e6b5fdaa1ac63e4ebc8c9c2de (diff) | |
download | quagga-7a492f65bd0d95e36d0465fbc59e0bf3fae90560.tar.bz2 quagga-7a492f65bd0d95e36d0465fbc59e0bf3fae90560.tar.xz |
[ospfd/zserv] adjust to new format
2006-01-17 Paul Jakma <paul.jakma@sun.com>
* ospf_packet.c: (ospf_verify_header) print out the types
involved if there's a mismatch.
* ospf_zebra.c: (ospf_zebra_add) Adjust to new zserv format.
Diffstat (limited to 'ospfd/ospf_packet.c')
-rw-r--r-- | ospfd/ospf_packet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ospfd/ospf_packet.c b/ospfd/ospf_packet.c index 54b30ca7..d6aca719 100644 --- a/ospfd/ospf_packet.c +++ b/ospfd/ospf_packet.c @@ -2253,8 +2253,8 @@ ospf_verify_header (struct stream *ibuf, struct ospf_interface *oi, /* Check authentication. */ if (ospf_auth_type (oi) != ntohs (ospfh->auth_type)) { - zlog_warn ("interface %s: ospf_read authentication type mismatch.", - IF_NAME (oi)); + zlog_warn ("interface %s: auth-type mismatch, local %d, rcvd %d", + IF_NAME (oi), ospf_auth_type (oi), ntohs (ospfh->auth_type)); return -1; } |