diff options
| author | Renato Westphal <renato@openbsd.org> | 2018-07-12 18:39:09 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-12 18:39:09 -0300 |
| commit | 25666e25af56f16d09aae46a62a613ff3028f670 (patch) | |
| tree | ecff971b89de2f8d68af67dd03795cae30c179a9 | |
| parent | 2dae54733ccef62b45274d2fabd229a217510c9f (diff) | |
| parent | 24f8f9791ec0306a35755496e143d80e0efd5a66 (diff) | |
Merge pull request #2660 from sworleys/master
zebra: Fix function call in fuzzing code
| -rw-r--r-- | zebra/zserv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/zserv.c b/zebra/zserv.c index 434a1507ae..b08da9cebd 100644 --- a/zebra/zserv.c +++ b/zebra/zserv.c @@ -69,7 +69,7 @@ extern struct zebra_privs_t zserv_privs; * Client thread events. * * These are used almost exclusively by client threads to drive their own event - * loops. The only exception is in zebra_client_create(), which pushes an + * loops. The only exception is in zserv_client_create(), which pushes an * initial ZSERV_CLIENT_READ event to start the API handler loop. */ enum zserv_client_event { @@ -1025,7 +1025,7 @@ void zserv_read_file(char *input) struct zserv *client = NULL; struct thread t; - zebra_client_create(-1); + zserv_client_create(-1); frr_pthread_stop(client->pthread, NULL); frr_pthread_destroy(client->pthread); |
