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 /ospfd/ospf_bfd.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 'ospfd/ospf_bfd.c')
| -rw-r--r-- | ospfd/ospf_bfd.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_bfd.c b/ospfd/ospf_bfd.c index 6c0ef37efd..41a2c1392f 100644 --- a/ospfd/ospf_bfd.c +++ b/ospfd/ospf_bfd.c @@ -221,7 +221,7 @@ ospf_bfd_interface_dest_update (int command, struct zclient *zclient,    if (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE))      { -      char buf[128]; +      char buf[PREFIX2STR_BUFFER];        prefix2str(&p, buf, sizeof(buf));        zlog_debug("Zebra: interface %s bfd destination %s %s", ifp->name, buf,                   bfd_get_status_str(status));  | 
