diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-03-08 14:37:17 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-03-08 14:37:17 +0000 |
commit | 638024ef48a4cc655a77875c6de7eea738459cca (patch) | |
tree | 1536012ac717ec8493dbbc88822e4614c540ae7e | |
parent | 03085d40aa6fed83571ff2251a1c3653d0035b3f (diff) |
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: |