diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-10-28 17:10:11 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-10-28 17:10:11 +0000 |
commit | d58ae1b62a8c3d2e576eb7c9f464fe6ab56e4282 (patch) | |
tree | 6e62ac89698a345aeac0ab64f08b433cebf48c40 /bin | |
parent | fb0e880601a674837feb396dd34ea76f09ce9f89 (diff) |
add missing "break". Alexander Yurchenko
Diffstat (limited to 'bin')
-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(); |