summaryrefslogtreecommitdiffstats
path: root/usr.bin
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2010-11-20 05:12:38 +0000
committerderaadt <deraadt@openbsd.org>2010-11-20 05:12:38 +0000
commit2144bd4e702974e42e75b45d0be21d36bce1fd55 (patch)
treefe6c699e845949affcddf3d0a64d0c921d5b20bc /usr.bin
parenttypo; from ilya a. kovalenko <shadow () oganer ! net> (diff)
downloadwireguard-openbsd-2144bd4e702974e42e75b45d0be21d36bce1fd55.tar.xz
wireguard-openbsd-2144bd4e702974e42e75b45d0be21d36bce1fd55.zip
clean up cases of ;;
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/aucat/midi.c4
-rw-r--r--usr.bin/aucat/wav.c4
-rw-r--r--usr.bin/ssh/auth2-pubkey.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/aucat/midi.c b/usr.bin/aucat/midi.c
index b252cb65bb0..88cd253de7e 100644
--- a/usr.bin/aucat/midi.c
+++ b/usr.bin/aucat/midi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: midi.c,v 1.31 2010/11/14 13:51:27 ratchov Exp $ */
+/* $OpenBSD: midi.c,v 1.32 2010/11/20 05:12:38 deraadt Exp $ */
/*
* Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org>
*
@@ -475,7 +475,7 @@ ctl_qfr(struct aproc *p)
p->u.ctl.fr -= p->u.ctl.fps;
p->u.ctl.sec++;
if (p->u.ctl.sec < 60)
- break;;
+ break;
p->u.ctl.sec = 0;
p->u.ctl.min++;
if (p->u.ctl.min < 60)
diff --git a/usr.bin/aucat/wav.c b/usr.bin/aucat/wav.c
index 4ab6ba9a428..ea035f16149 100644
--- a/usr.bin/aucat/wav.c
+++ b/usr.bin/aucat/wav.c
@@ -873,7 +873,7 @@ rwav_new(struct file *f)
p = aproc_new(&rwav_ops, f->name);
p->u.io.file = f;
- p->u.io.partial = 0;;
+ p->u.io.partial = 0;
f->rproc = p;
return p;
}
@@ -925,7 +925,7 @@ wwav_new(struct file *f)
p = aproc_new(&wwav_ops, f->name);
p->u.io.file = f;
- p->u.io.partial = 0;;
+ p->u.io.partial = 0;
f->wproc = p;
return p;
}
diff --git a/usr.bin/ssh/auth2-pubkey.c b/usr.bin/ssh/auth2-pubkey.c
index 4e08064e155..0eda7ade9ab 100644
--- a/usr.bin/ssh/auth2-pubkey.c
+++ b/usr.bin/ssh/auth2-pubkey.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auth2-pubkey.c,v 1.26 2010/06/29 23:16:46 djm Exp $ */
+/* $OpenBSD: auth2-pubkey.c,v 1.27 2010/11/20 05:12:38 deraadt Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
*
@@ -231,7 +231,7 @@ match_principals_file(char *file, struct passwd *pw, struct KeyCert *cert)
if ((ep = strrchr(cp, ' ')) != NULL ||
(ep = strrchr(cp, '\t')) != NULL) {
for (; *ep == ' ' || *ep == '\t'; ep++)
- ;;
+ ;
line_opts = cp;
cp = ep;
}