diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2024-05-09 07:47:29 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2024-05-10 10:16:29 -0400 | 
| commit | 73ad64a6f4b039ce482ad5c3b080e8c9bb02890f (patch) | |
| tree | e1db111a14838563686d207f5371fcf024edc5a7 /ospf6d | |
| parent | 51119823d02847f6095725e520264c85af94b37f (diff) | |
*: Modify agentx to be allowed to be called
If you had a situation where an operator turned on
ospfd with snmp but not ospf6d and agentx was configured
then you get into a situation where ospf6d would complain
that the config for agentx did not exist.  Let's modify
the code to allow this situation to happen.
Fixes: #15896
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'ospf6d')
| -rw-r--r-- | ospf6d/ospf6_main.c | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/ospf6d/ospf6_main.c b/ospf6d/ospf6_main.c index abd4320335..8320f11f6c 100644 --- a/ospf6d/ospf6_main.c +++ b/ospf6d/ospf6_main.c @@ -24,6 +24,7 @@  #include "vrf.h"  #include "bfd.h"  #include "libfrr.h" +#include "libagentx.h"  #include "ospf6d.h"  #include "ospf6_top.h" @@ -266,6 +267,7 @@ int main(int argc, char *argv[], char *envp[])  	/* thread master */  	master = om6->master; +	libagentx_init();  	keychain_init();  	ospf6_vrf_init();  	access_list_init();  | 
