summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstevesk <stevesk@openbsd.org>2005-10-16 17:12:30 +0000
committerstevesk <stevesk@openbsd.org>2005-10-16 17:12:30 +0000
commit9b01acb5ff5562f04889421fa0658ff403a64960 (patch)
treef88880c715da54adbc5e128e4fa716c151f7e5d2
parentspacing; (diff)
downloadwireguard-openbsd-9b01acb5ff5562f04889421fa0658ff403a64960.tar.xz
wireguard-openbsd-9b01acb5ff5562f04889421fa0658ff403a64960.zip
missing break caused erroneous auth-type crypt enabled in 'sh int'
when simple enabled; ok claudio@
-rw-r--r--usr.sbin/ospfctl/ospfctl.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/ospfctl/ospfctl.c b/usr.sbin/ospfctl/ospfctl.c
index 1341a9e8a8c..b6ff5f67c01 100644
--- a/usr.sbin/ospfctl/ospfctl.c
+++ b/usr.sbin/ospfctl/ospfctl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ospfctl.c,v 1.18 2005/09/24 21:10:32 msf Exp $ */
+/* $OpenBSD: ospfctl.c,v 1.19 2005/10/16 17:12:30 stevesk Exp $ */
/*
* Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org>
@@ -349,11 +349,13 @@ show_interface_msg(struct imsg *imsg)
case AUTH_SIMPLE:
printf(" Simple password authentication "
"enabled\n");
+ break;
case AUTH_CRYPT:
printf(" Message digest authentication "
"enabled\n");
printf(" Primary key id is %d\n",
iface->auth_keyid);
+ break;
default:
break;
}