diff options
author | paul <paul> | 2006-07-04 13:52:29 +0000 |
---|---|---|
committer | paul <paul> | 2006-07-04 13:52:29 +0000 |
commit | d3188ec16a6f5d926ed35cf4b3dec6ab682dd64c (patch) | |
tree | 407c6aa2377d01fbfcd3bc4e0abfa5e32ef2f60e | |
parent | a4253c8d3df7e9e40957c3a6f2b3f8575c7ed5f5 (diff) | |
download | quagga-d3188ec16a6f5d926ed35cf4b3dec6ab682dd64c.tar.bz2 quagga-d3188ec16a6f5d926ed35cf4b3dec6ab682dd64c.tar.xz |
[ospfd] CID #13, dont try print out fields of LSA we know to be NULL.
2006-07-02 Paul Jakma <paul.jakma@sun.com>
* ospf_lsa.c: (ospf_translated_nssa_refresh) CID #13.
-rw-r--r-- | ospfd/ChangeLog | 1 | ||||
-rw-r--r-- | ospfd/ospf_lsa.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ospfd/ChangeLog b/ospfd/ChangeLog index e22b7a42..eff71fca 100644 --- a/ospfd/ChangeLog +++ b/ospfd/ChangeLog @@ -20,6 +20,7 @@ purposes. (nsm_kill_nbr) Oops, action function shouldn't try return 1 for error. + * ospf_lsa.c: (ospf_translated_nssa_refresh) CID #13. 2006-06-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu> diff --git a/ospfd/ospf_lsa.c b/ospfd/ospf_lsa.c index 509afc8a..8b5c6eb8 100644 --- a/ospfd/ospf_lsa.c +++ b/ospfd/ospf_lsa.c @@ -2090,7 +2090,7 @@ ospf_translated_nssa_refresh (struct ospf *ospf, struct ospf_lsa *type7, if (IS_DEBUG_OSPF_NSSA) zlog_debug ("ospf_translated_nssa_refresh(): Could not install " "translated LSA, Id %s", - inet_ntoa (new->data->id)); + inet_ntoa (type7->data->id)); return NULL; } |