diff options
author | Donald Sharp <sharpd@nvidia.com> | 2023-03-04 15:14:52 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2023-03-24 13:32:17 +0100 |
commit | ce50d11c4d89304825b614d63fe6d7bd8ad2d517 (patch) | |
tree | c5c8aad8c6b51d88033cb47b1fa373b91ae2efb1 /ospfclient | |
parent | *: Convert THREAD_XXX macros to EVENT_XXX macros (diff) | |
download | frr-ce50d11c4d89304825b614d63fe6d7bd8ad2d517.tar.xz frr-ce50d11c4d89304825b614d63fe6d7bd8ad2d517.zip |
*: Convert thread_master_XXX functions to event_master_XXX
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'ospfclient')
-rw-r--r-- | ospfclient/ospfclient.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfclient/ospfclient.c b/ospfclient/ospfclient.c index d3ba642d7..b884e0e0e 100644 --- a/ospfclient/ospfclient.c +++ b/ospfclient/ospfclient.c @@ -293,7 +293,7 @@ int main(int argc, char *argv[]) /* Initialization */ zprivs_preinit(&ospfd_privs); zprivs_init(&ospfd_privs); - master = thread_master_create(NULL); + master = event_master_create(NULL); /* Open connection to OSPF daemon */ oclient = ospf_apiclient_connect(args[1], ASYNCPORT); |