summaryrefslogtreecommitdiff
path: root/usr.sbin/relayd/pfe.c
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2008-09-03 13:41:50 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2008-09-03 13:41:50 +0000
commit5404bb5e2a473222a45c1c47cc0108b2432530db (patch)
treef9075886dc17154f7e7ec2bc749ea2a3748f4da5 /usr.sbin/relayd/pfe.c
parent1db35b8bd43aac733e1151d49a20c9b1401fb591 (diff)
Missing breaks.
ok pyr@
Diffstat (limited to 'usr.sbin/relayd/pfe.c')
-rw-r--r--usr.sbin/relayd/pfe.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/relayd/pfe.c b/usr.sbin/relayd/pfe.c
index 947de05f50b..12acfbf05b0 100644
--- a/usr.sbin/relayd/pfe.c
+++ b/usr.sbin/relayd/pfe.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pfe.c,v 1.51 2008/08/08 08:51:21 thib Exp $ */
+/* $OpenBSD: pfe.c,v 1.52 2008/09/03 13:41:49 jsg Exp $ */
/*
* Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
@@ -58,6 +58,7 @@ pfe_sig_handler(int sig, short event, void *arg)
case SIGINT:
case SIGTERM:
pfe_shutdown();
+ break;
default:
fatalx("pfe_sig_handler: unexpected signal");
}