diff options
author | 2005-03-08 14:37:16 +0000 | |
---|---|---|
committer | 2005-03-08 14:37:16 +0000 | |
commit | 1847bad0d283f85e510df18a5d52fd1e08e5b118 (patch) | |
tree | 3bb93b3a655de3bb7ad13e7459ee5809eb71abc6 | |
parent | from the "shut the fuck up, ntpd" department: (diff) | |
download | wireguard-openbsd-1847bad0d283f85e510df18a5d52fd1e08e5b118.tar.xz wireguard-openbsd-1847bad0d283f85e510df18a5d52fd1e08e5b118.zip |
missing break spotted by lint
-rw-r--r-- | usr.sbin/ntpd/ntp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ntpd/ntp.c b/usr.sbin/ntpd/ntp.c index 9c743ef3bab..f9fd8a9e0f8 100644 --- a/usr.sbin/ntpd/ntp.c +++ b/usr.sbin/ntpd/ntp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ntp.c,v 1.51 2005/02/22 12:03:24 henning Exp $ */ +/* $OpenBSD: ntp.c,v 1.52 2005/03/08 14:37:16 deraadt Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -80,6 +80,7 @@ ntp_main(int pipe_prnt[2], struct ntpd_conf *nconf) switch (pid = fork()) { case -1: fatal("cannot fork"); + break; case 0: break; default: |