diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2023-08-15 11:52:49 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-15 11:52:49 -0400 |
| commit | 77014daf3a88f4a4e2874db93e4b3915937f20ee (patch) | |
| tree | 58461293771e230d31025f8e00b248deb6383ab8 /lib/bfd.c | |
| parent | 2bc2ff61c88286585bb86ae8f799872aaf0a0077 (diff) | |
| parent | adca5c22c573f17b09b96a0994953c8f643fd301 (diff) | |
Merge pull request #14016 from mjstapp/event_exec_ptr
* : include event ptr in event_execute api
Diffstat (limited to 'lib/bfd.c')
| -rw-r--r-- | lib/bfd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -541,7 +541,7 @@ static void _bfd_sess_remove(struct bfd_session_params *bsp) /* Send request to remove any session. */ bsp->lastev = BSE_UNINSTALL; - event_execute(bsglobal.tm, _bfd_sess_send, bsp, 0); + event_execute(bsglobal.tm, _bfd_sess_send, bsp, 0, NULL); } void bfd_sess_free(struct bfd_session_params **bsp) @@ -894,7 +894,7 @@ int zclient_bfd_session_replay(ZAPI_CALLBACK_ARGS) /* Ask for installation. */ bsp->lastev = BSE_INSTALL; - event_execute(bsglobal.tm, _bfd_sess_send, bsp, 0); + event_execute(bsglobal.tm, _bfd_sess_send, bsp, 0, NULL); } return 0; |
