diff options
| author | Mark Stapp <mjs@cisco.com> | 2025-03-26 15:27:09 -0400 | 
|---|---|---|
| committer | Mark Stapp <mjs@cisco.com> | 2025-04-08 14:41:27 -0400 | 
| commit | aece400f10cf60392b527f688b754bec38d2bfe8 (patch) | |
| tree | 8a3fe660785238a0fd7b012beb635bb201347eee /pimd/pim_zpthread.c | |
| parent | 7c98a27f3e53d543284c89d7518ba3b0d77278d4 (diff) | |
pimd: clean up variable-shadow warnings
Clean up -Wshadow warnings in pimd
Signed-off-by: Mark Stapp <mjs@cisco.com>
Diffstat (limited to 'pimd/pim_zpthread.c')
| -rw-r--r-- | pimd/pim_zpthread.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/pimd/pim_zpthread.c b/pimd/pim_zpthread.c index d6b2621ff4..45d8868808 100644 --- a/pimd/pim_zpthread.c +++ b/pimd/pim_zpthread.c @@ -13,7 +13,7 @@  #include "pim_mlag.h"  #include "pim_zebra.h" -extern struct zclient *zclient; +extern struct zclient *pim_zclient;  #define PIM_MLAG_POST_LIMIT 100 @@ -96,7 +96,7 @@ static void pim_mlag_zebra_flush_buffer(void)  		}  	} -	zclient_send_mlag_data(zclient, router->mlag_stream); +	zclient_send_mlag_data(pim_zclient, router->mlag_stream);  stream_failure:  	stream_reset(router->mlag_stream);  	mlag_bulk_cnt = 0;  | 
