diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-11-23 12:44:34 -0800 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-11-23 13:31:11 -0800 | 
| commit | 4690c7d74c8d3f08ac3c4c73918c847a9dd862b4 (patch) | |
| tree | 55e97b177d0b5c153f8390342660a412d5e33a19 /ospf6d/ospf6_lsdb.c | |
| parent | 35dece848d46456441d75181953290a23193e84c (diff) | |
Quagga: prefix2str fixup
During CR for nexthop upstream it was noticed that usage
of prefix2str was not consistent.  This fixes this problem
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'ospf6d/ospf6_lsdb.c')
| -rw-r--r-- | ospf6d/ospf6_lsdb.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6_lsdb.c b/ospf6d/ospf6_lsdb.c index 37259d6c7c..c73d6923fe 100644 --- a/ospf6d/ospf6_lsdb.c +++ b/ospf6d/ospf6_lsdb.c @@ -238,7 +238,7 @@ ospf6_lsdb_lookup_next (u_int16_t type, u_int32_t id, u_int32_t adv_router,    p = (struct prefix *) &key;    { -    char buf[64]; +    char buf[PREFIX2STR_BUFFER];      prefix2str (p, buf, sizeof (buf));      zlog_debug ("lsdb_lookup_next: key: %s", buf);    }  | 
