From 46b673792ac01036d5d8345b31dd1761eaef5cf3 Mon Sep 17 00:00:00 2001 From: Richard Cochran Date: Mon, 19 Aug 2019 08:37:23 -0700 Subject: [PATCH] Keep configuration options in alphabetical order. The order of the options list has gone a bit astray. This patch restores the ordering. Fixes: 450b1ed844f6 ("port: Add inhibit_delay_req.") Signed-off-by: Richard Cochran --- config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.c b/config.c index 83cb48e..12eb1f9 100644 --- a/config.c +++ b/config.c @@ -244,9 +244,9 @@ struct config_item config_tab[] = { PORT_ITEM_INT("ignore_transport_specific", 0, 0, 1), PORT_ITEM_INT("ingressLatency", 0, INT_MIN, INT_MAX), PORT_ITEM_INT("inhibit_announce", 0, 0, 1), - GLOB_ITEM_INT("initial_delay", 0, 0, INT_MAX), PORT_ITEM_INT("inhibit_delay_req", 0, 0, 1), PORT_ITEM_INT("inhibit_multicast_service", 0, 0, 1), + GLOB_ITEM_INT("initial_delay", 0, 0, INT_MAX), GLOB_ITEM_INT("kernel_leap", 1, 0, 1), PORT_ITEM_INT("logAnnounceInterval", 1, INT8_MIN, INT8_MAX), PORT_ITEM_INT("logMinDelayReqInterval", 0, INT8_MIN, INT8_MAX),