From: pcarana Date: Thu, 7 Mar 2019 00:54:41 +0000 (-0600) Subject: Use NULL instead of start_serial (is the same thing) X-Git-Tag: v0.0.2~52^2~41 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9fb45d46af88cb1956d1f51423e9205891f7bc0e;p=thirdparty%2FFORT-validator.git Use NULL instead of start_serial (is the same thing) --- diff --git a/src/rtr/pdu_handler.c b/src/rtr/pdu_handler.c index 35c62469..6627e453 100644 --- a/src/rtr/pdu_handler.c +++ b/src/rtr/pdu_handler.c @@ -116,7 +116,7 @@ handle_reset_query_pdu(int fd, void *pdu) init_sender_common(&common, fd, version, &session_id, NULL, ¤t_serial); - updates = deltas_db_status(common.start_serial); + updates = deltas_db_status(NULL); switch (updates) { case NO_DATA_AVAILABLE: /* https://tools.ietf.org/html/rfc8210#section-8.4 */