The branch main has been updated by melifaro:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=685866bbe13da2b9c5d108036c29f07a4c7cd04f

commit 685866bbe13da2b9c5d108036c29f07a4c7cd04f
Author:     Alexander V. Chernikov <[email protected]>
AuthorDate: 2022-08-10 20:44:43 +0000
Commit:     Alexander V. Chernikov <[email protected]>
CommitDate: 2022-08-10 20:45:22 +0000

    routing: fix build without ROUTE_MPATH
    
    MFC after:      1 month
---
 sys/net/route/route_ctl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/net/route/route_ctl.c b/sys/net/route/route_ctl.c
index 8418e8ddd1d5..34b00a0b82ce 100644
--- a/sys/net/route/route_ctl.c
+++ b/sys/net/route/route_ctl.c
@@ -920,11 +920,11 @@ rt_delete_conditional(struct rib_head *rnh, struct 
rtentry *rt,
     int prio, rib_filter_f_t *cb, void *cbdata, struct rib_cmd_info *rc)
 {
        struct nhop_object *nh = rt->rt_nhop;
-       struct route_nhop_data rnd;
 
 #ifdef ROUTE_MPATH
        if (NH_IS_NHGRP(nh)) {
                struct nhgrp_object *nhg = (struct nhgrp_object *)nh;
+               struct route_nhop_data rnd;
                int error;
 
                if (cb == NULL)

Reply via email to