From 002ed15d64eaaea6541ae8161846ac2f05e1cf5d Mon Sep 17 00:00:00 2001 From: kevlo Date: Wed, 12 Sep 2012 10:16:39 +0000 Subject: Add missing braces Obtained from: DragonFly --- usr.sbin/timed/timed/timed.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'usr.sbin/timed') diff --git a/usr.sbin/timed/timed/timed.c b/usr.sbin/timed/timed/timed.c index e3397a9..4b0030c 100644 --- a/usr.sbin/timed/timed/timed.c +++ b/usr.sbin/timed/timed/timed.c @@ -418,9 +418,10 @@ main(argc, argv) justquit = 1; } for (ntp = nettab; ntp != NULL; ntp = ntp->next) { - if (ntp->status == MASTER) + if (ntp->status == MASTER) { rmnetmachs(ntp); ntp->status = NOMASTER; + } } checkignorednets(); pickslavenet(0); -- cgit v1.1