Skip to content

Commit

Permalink
bgpd: Do not initialize global variable zclient_sync to NULL
Browse files Browse the repository at this point in the history
Signed-off-by: Donatas Abraitis <[email protected]>
  • Loading branch information
ton31337 committed Jun 20, 2023
1 parent 20c2c87 commit 257a0e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bgpd/bgp_zebra.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

/* All information about zebra. */
struct zclient *zclient = NULL;
struct zclient *zclient_sync = NULL;
struct zclient *zclient_sync;
static bool bgp_zebra_label_manager_connect(void);

/* hook to indicate vrf status change for SNMP */
Expand Down

0 comments on commit 257a0e0

Please sign in to comment.