diff options
author | Donald Sharp <sharpd@nvidia.com> | 2021-11-11 20:28:54 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2021-11-11 20:41:27 +0100 |
commit | 7cc91e67a3f4dc16bec63fbaac097719d401a578 (patch) | |
tree | 1e003886f820d89f3d37ad9d2de6f33636f5d19f /staticd | |
parent | Merge pull request #10006 from chiragshah6/evpn_dev (diff) | |
download | frr-7cc91e67a3f4dc16bec63fbaac097719d401a578.tar.xz frr-7cc91e67a3f4dc16bec63fbaac097719d401a578.zip |
*: Convert quagga_signal_X to frr_signal_X
Naming functions/data structures more appropriately for
the project we are actually in.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'staticd')
-rw-r--r-- | staticd/static_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/staticd/static_main.c b/staticd/static_main.c index f7a15462a..6051b2df1 100644 --- a/staticd/static_main.c +++ b/staticd/static_main.c @@ -91,7 +91,7 @@ static void sigusr1(void) zlog_rotate(); } -struct quagga_signal_t static_signals[] = { +struct frr_signal_t static_signals[] = { { .signal = SIGHUP, .handler = &sighup, |