diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2017-01-18 01:30:43 +0100 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2017-01-23 18:26:32 +0100 |
commit | cf672a865428b5e55844b6d2e01ca9d3bd4afe6b (patch) | |
tree | fd47b5006fa2f7cc6499e6d84f800ccfb74d77dc /ospf6d/ospf6_message.c | |
parent | *: remove quagga_gettime() return value checks (diff) | |
download | frr-cf672a865428b5e55844b6d2e01ca9d3bd4afe6b.tar.xz frr-cf672a865428b5e55844b6d2e01ca9d3bd4afe6b.zip |
*: use monotime()
This is largely a bulk-replace made with coccinelle.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ospf6d/ospf6_message.c')
-rw-r--r-- | ospf6d/ospf6_message.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6_message.c b/ospf6d/ospf6_message.c index 229c1ef55..578b39a64 100644 --- a/ospf6d/ospf6_message.c +++ b/ospf6d/ospf6_message.c @@ -1817,7 +1817,7 @@ ospf6_dbdesc_send (struct thread *thread) if (CHECK_FLAG (on->dbdesc_bits, OSPF6_DBDESC_IBIT) && (on->dbdesc_seqnum == 0)) { - on->dbdesc_seqnum = quagga_monotime (); + on->dbdesc_seqnum = monotime(NULL); } dbdesc->options[0] = on->ospf6_if->area->options[0]; |