summaryrefslogtreecommitdiffstats
path: root/ldpd
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2021-11-11 20:28:54 +0100
committerDonald Sharp <sharpd@nvidia.com>2021-11-11 20:41:27 +0100
commit7cc91e67a3f4dc16bec63fbaac097719d401a578 (patch)
tree1e003886f820d89f3d37ad9d2de6f33636f5d19f /ldpd
parentMerge pull request #10006 from chiragshah6/evpn_dev (diff)
downloadfrr-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 'ldpd')
-rw-r--r--ldpd/lde.c2
-rw-r--r--ldpd/ldpd.c2
-rw-r--r--ldpd/ldpe.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/ldpd/lde.c b/ldpd/lde.c
index 095631036..55fa806d4 100644
--- a/ldpd/lde.c
+++ b/ldpd/lde.c
@@ -107,7 +107,7 @@ sigint(void)
lde_shutdown();
}
-static struct quagga_signal_t lde_signals[] =
+static struct frr_signal_t lde_signals[] =
{
{
.signal = SIGHUP,
diff --git a/ldpd/ldpd.c b/ldpd/ldpd.c
index 0ff3238ff..6fa0e330f 100644
--- a/ldpd/ldpd.c
+++ b/ldpd/ldpd.c
@@ -180,7 +180,7 @@ sigusr1(void)
zlog_rotate();
}
-static struct quagga_signal_t ldp_signals[] =
+static struct frr_signal_t ldp_signals[] =
{
{
.signal = SIGHUP,
diff --git a/ldpd/ldpe.c b/ldpd/ldpe.c
index fff7ee7c6..31f8026e3 100644
--- a/ldpd/ldpe.c
+++ b/ldpd/ldpe.c
@@ -82,7 +82,7 @@ sigint(void)
ldpe_shutdown();
}
-static struct quagga_signal_t ldpe_signals[] =
+static struct frr_signal_t ldpe_signals[] =
{
{
.signal = SIGHUP,