summaryrefslogtreecommitdiff
path: root/tests/lib/test_sig.c
diff options
context:
space:
mode:
authorJafar Al-Gharaibeh <jafar@atcorp.com>2021-11-12 21:35:27 -0600
committerGitHub <noreply@github.com>2021-11-12 21:35:27 -0600
commit3357afaa74c2d3e2dafb65397a666f5b46470f7e (patch)
tree460cedda577a74692bfde0a5f37c9e27c1b1ec76 /tests/lib/test_sig.c
parentd9a03ad330c20d900caf4e1c266389bd8d2da651 (diff)
parentb72aae2e044a1dbc5cffada5b7f3abec26f46ec7 (diff)
Merge pull request #10036 from donaldsharp/finally_frr
Finally frr
Diffstat (limited to 'tests/lib/test_sig.c')
-rw-r--r--tests/lib/test_sig.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/tests/lib/test_sig.c b/tests/lib/test_sig.c
index 2aceafb8f0..9165f1850f 100644
--- a/tests/lib/test_sig.c
+++ b/tests/lib/test_sig.c
@@ -36,18 +36,18 @@ static void sigusr2(void)
printf("processed usr2\n");
}
-struct quagga_signal_t sigs[] = {{
- .signal = SIGHUP,
- .handler = &sighup,
- },
- {
- .signal = SIGUSR1,
- .handler = &sigusr1,
- },
- {
- .signal = SIGUSR2,
- .handler = &sigusr2,
- }};
+struct frr_signal_t sigs[] = {{
+ .signal = SIGHUP,
+ .handler = &sighup,
+ },
+ {
+ .signal = SIGUSR1,
+ .handler = &sigusr1,
+ },
+ {
+ .signal = SIGUSR2,
+ .handler = &sigusr2,
+ }};
struct thread_master *master;
struct thread t;