summaryrefslogtreecommitdiffstats
path: root/pimd/pim_signals.c
diff options
context:
space:
mode:
Diffstat (limited to 'pimd/pim_signals.c')
-rw-r--r--pimd/pim_signals.c53
1 files changed, 26 insertions, 27 deletions
diff --git a/pimd/pim_signals.c b/pimd/pim_signals.c
index 053ef6a67..0e7f99ee6 100644
--- a/pimd/pim_signals.c
+++ b/pimd/pim_signals.c
@@ -11,7 +11,7 @@
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
-
+
You should have received a copy of the GNU General Public License
along with this program; see the file COPYING; if not, write to the
Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
@@ -36,44 +36,43 @@
static void pim_sighup()
{
- zlog_info ("SIGHUP received, ignoring");
+ zlog_info("SIGHUP received, ignoring");
}
static void pim_sigint()
{
- zlog_notice("Terminating on signal SIGINT");
- pim_terminate();
- exit(1);
+ zlog_notice("Terminating on signal SIGINT");
+ pim_terminate();
+ exit(1);
}
static void pim_sigterm()
{
- zlog_notice("Terminating on signal SIGTERM");
- pim_terminate();
- exit(1);
+ zlog_notice("Terminating on signal SIGTERM");
+ pim_terminate();
+ exit(1);
}
static void pim_sigusr1()
{
- zlog_rotate();
+ zlog_rotate();
}
-struct quagga_signal_t pimd_signals[] =
-{
- {
- .signal = SIGHUP,
- .handler = &pim_sighup,
- },
- {
- .signal = SIGUSR1,
- .handler = &pim_sigusr1,
- },
- {
- .signal = SIGINT,
- .handler = &pim_sigint,
- },
- {
- .signal = SIGTERM,
- .handler = &pim_sigterm,
- },
+struct quagga_signal_t pimd_signals[] = {
+ {
+ .signal = SIGHUP,
+ .handler = &pim_sighup,
+ },
+ {
+ .signal = SIGUSR1,
+ .handler = &pim_sigusr1,
+ },
+ {
+ .signal = SIGINT,
+ .handler = &pim_sigint,
+ },
+ {
+ .signal = SIGTERM,
+ .handler = &pim_sigterm,
+ },
};