diff options
| author | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-11-08 12:51:16 -0500 |
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-12-01 13:51:06 -0500 |
| commit | 2d34fb80b81c929bcf0d2524b0f2383ee01ea5dc (patch) | |
| tree | 1322d2443437dc9afbe112152c0a6c9745e89a71 /ospfd/ospf_lsa.c | |
| parent | 493472ba8ecb44f21bc9cd85c1307262648d5bc3 (diff) | |
*: don't use deprecated stream.h macros
Some of the deprecated stream.h macros see such little use that we may
as well just remove them and use the non-deprecated macros.
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'ospfd/ospf_lsa.c')
| -rw-r--r-- | ospfd/ospf_lsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_lsa.c b/ospfd/ospf_lsa.c index f00454528a..a2961992de 100644 --- a/ospfd/ospf_lsa.c +++ b/ospfd/ospf_lsa.c @@ -438,7 +438,7 @@ static char link_info_set(struct stream *s, struct in_addr id, if (ret == OSPF_MAX_LSA_SIZE) { zlog_warn( "%s: Out of space in LSA stream, left %zd, size %zd", - __func__, STREAM_REMAIN(s), STREAM_SIZE(s)); + __func__, STREAM_WRITEABLE(s), STREAM_SIZE(s)); return 0; } } |
