diff options
author | hasso <hasso> | 2004-11-25 20:54:46 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-11-25 20:54:46 +0000 |
commit | a1691dc4e16df8676770b4c37cda65e6fe0bf8d3 (patch) | |
tree | 1a38a53c4680fada1edb63c1458763dece24d6c5 /ospf6d/ospf6_lsa.c | |
parent | f1f8b2966cb6d874535519c25e4f00632a2c1c91 (diff) | |
download | quagga-a1691dc4e16df8676770b4c37cda65e6fe0bf8d3.tar.bz2 quagga-a1691dc4e16df8676770b4c37cda65e6fe0bf8d3.tar.xz |
Merge svn revisions 1208, 1222 and 1228 from Zebra cvs.
Diffstat (limited to 'ospf6d/ospf6_lsa.c')
-rw-r--r-- | ospf6d/ospf6_lsa.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ospf6d/ospf6_lsa.c b/ospf6d/ospf6_lsa.c index 48f79afa..4d3287d6 100644 --- a/ospf6d/ospf6_lsa.c +++ b/ospf6d/ospf6_lsa.c @@ -97,6 +97,9 @@ ospf6_get_lsa_handler (u_int16_t type) else handler = vector_slot (ospf6_lsa_handler_vector, index); + if (handler == NULL) + handler = &unknown_handler; + return handler; } |