From 709567d8450d77acf1d12c4d7412d91e40f9afe9 Mon Sep 17 00:00:00 2001 From: bcook <> Date: Mon, 19 Jan 2015 20:47:03 +0000 Subject: [PATCH] Use initial assignment of action to check for errors. This simplifies things and make action = -1 no longer a dead store. Also, spell FALLTHROUGH consistently. reported by fritjof@alokat.org --- src/usr.sbin/ntpd/client.c | 4 ++-- src/usr.sbin/ntpd/ntpd.c | 9 ++++----- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/src/usr.sbin/ntpd/client.c b/src/usr.sbin/ntpd/client.c index 0d984a3d..06c41fda 100644 --- a/src/usr.sbin/ntpd/client.c +++ b/src/usr.sbin/ntpd/client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: client.c,v 1.97 2015/01/09 23:44:07 bcook Exp $ */ +/* $OpenBSD: client.c,v 1.98 2015/01/19 20:47:03 bcook Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer @@ -85,7 +85,7 @@ client_addr_init(struct ntp_peer *p) break; default: fatalx("king bula sez: wrong AF in client_addr_init"); - /* not reached */ + /* NOTREACHED */ } } diff --git a/src/usr.sbin/ntpd/ntpd.c b/src/usr.sbin/ntpd/ntpd.c index 9796c341..6f85b142 100644 --- a/src/usr.sbin/ntpd/ntpd.c +++ b/src/usr.sbin/ntpd/ntpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ntpd.c,v 1.86 2015/01/14 21:14:27 naddy Exp $ */ +/* $OpenBSD: ntpd.c,v 1.87 2015/01/19 20:47:03 bcook Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer @@ -578,12 +578,11 @@ ctl_main(int argc, char *argv[]) case 'a': action = CTL_SHOW_ALL; break; - default: - usage(); - /* NOTREACHED */ } - } else + } + if (action == -1) usage(); + /* NOTREACHED */ if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) err(1, "ntpctl: socket");