projects
/
dragonfly.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
784ea38
)
timed(8): Add missing braces.
author
Sascha Wildner <saw@online.de>
Thu, 14 Jun 2012 17:29:07 +0000 (19:29 +0200)
committer
Sascha Wildner <saw@online.de>
Thu, 14 Jun 2012 17:29:21 +0000 (19:29 +0200)
usr.sbin/timed/timed/timed.c
patch
|
blob
|
blame
|
history
diff --git
a/usr.sbin/timed/timed/timed.c
b/usr.sbin/timed/timed/timed.c
index
2c13276
..
5223690
100644
(file)
--- a/
usr.sbin/timed/timed/timed.c
+++ b/
usr.sbin/timed/timed/timed.c
@@
-409,9
+409,10
@@
main(int argc, char *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);