diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-06-26 13:59:16 +0300 | 
|---|---|---|
| committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-06-26 16:31:53 +0300 | 
| commit | 93ffc5a2fdaf82c4c458c2c4bbbb090b0e00e443 (patch) | |
| tree | 3b160d51fc09e949ec18a819542f3a4d609bcefb /pathd/path_zebra.c | |
| parent | a9c81cc289e8d40b87117e01b1416a9ac2f60f50 (diff) | |
pathd: Stop and free synchronous Zebra client on pathd termination
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to 'pathd/path_zebra.c')
| -rw-r--r-- | pathd/path_zebra.c | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/pathd/path_zebra.c b/pathd/path_zebra.c index dad26383e9..826443f979 100644 --- a/pathd/path_zebra.c +++ b/pathd/path_zebra.c @@ -344,4 +344,6 @@ void path_zebra_stop(void)  {  	zclient_stop(zclient);  	zclient_free(zclient); +	zclient_stop(zclient_sync); +	zclient_free(zclient_sync);  }  | 
