summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhasso <hasso>2004-03-17 21:39:18 +0100
committerhasso <hasso>2004-03-17 21:39:18 +0100
commit8c903fbb11e5eed5bcf08d26c2b984d07a82e109 (patch)
treef9dad8ba30472ad9d272fedded449398558a60f5
parent2004-03-16 David Young <dyoung@pobox.com> (diff)
downloadfrr-8c903fbb11e5eed5bcf08d26c2b984d07a82e109.tar.xz
frr-8c903fbb11e5eed5bcf08d26c2b984d07a82e109.zip
Fix bugzilla #82.
-rw-r--r--ChangeLog5
-rw-r--r--ripd/rip_main.c2
-rw-r--r--zebra/main.c2
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 59a3bffbc..d2c2428bc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-03-17 Jean-Yves Simon <lethalwp@tiscali.be>
+
+ * zebra/main.c, ripd/rip_main.c: Fix typos sigusr1 -> sigint,
+ bugzilla #82.
+
2004-03-16 David Young <dyoung@pobox.com>
* (many) reference <lib/version.h> rather than "version.h",
diff --git a/ripd/rip_main.c b/ripd/rip_main.c
index 5d6b0ad42..abe610672 100644
--- a/ripd/rip_main.c
+++ b/ripd/rip_main.c
@@ -170,7 +170,7 @@ struct quagga_signal_t ripd_signals[] =
},
{
.signal = SIGINT,
- .handler = &sigusr1,
+ .handler = &sigint,
},
};
diff --git a/zebra/main.c b/zebra/main.c
index 07467bea1..9966c1728 100644
--- a/zebra/main.c
+++ b/zebra/main.c
@@ -174,7 +174,7 @@ struct quagga_signal_t zebra_signals[] =
},
{
.signal = SIGINT,
- .handler = &sigusr1,
+ .handler = &sigint,
},
};