diff options
author | 2002-10-28 17:10:10 +0000 | |
---|---|---|
committer | 2002-10-28 17:10:10 +0000 | |
commit | b9762c672441a7550d2463506b5d74ff6f1a5ca7 (patch) | |
tree | f9d753c4440768c02cb2596053934e8014871fd1 | |
parent | getdents64 support, based on FreeBSD. (diff) | |
download | wireguard-openbsd-b9762c672441a7550d2463506b5d74ff6f1a5ca7.tar.xz wireguard-openbsd-b9762c672441a7550d2463506b5d74ff6f1a5ca7.zip |
add missing "break". Alexander Yurchenko
-rw-r--r-- | bin/systrace/systrace.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/systrace/systrace.c b/bin/systrace/systrace.c index 5d52cb1c06e..e8129d4af77 100644 --- a/bin/systrace/systrace.c +++ b/bin/systrace/systrace.c @@ -1,4 +1,4 @@ -/* $OpenBSD: systrace.c,v 1.38 2002/10/16 15:01:08 itojun Exp $ */ +/* $OpenBSD: systrace.c,v 1.39 2002/10/28 17:10:10 itojun Exp $ */ /* * Copyright 2002 Niels Provos <provos@citi.umich.edu> * All rights reserved. @@ -472,6 +472,7 @@ main(int argc, char **argv) if (cr_uid <= 0 || cr_gid <= 0) usage(); + break; case 'a': if (allow) usage(); |