diff options
author | 2001-12-19 07:18:56 +0000 | |
---|---|---|
committer | 2001-12-19 07:18:56 +0000 | |
commit | 660b1623ac34469dd86eaf69a3bccd2a8642bb90 (patch) | |
tree | 5ba7846ddd7874585d9bc2e7332ee4b225377280 /usr.bin/ssh/mac.c | |
parent | Introduce brdtyp and change what cputyp means. (diff) | |
download | wireguard-openbsd-660b1623ac34469dd86eaf69a3bccd2a8642bb90.tar.xz wireguard-openbsd-660b1623ac34469dd86eaf69a3bccd2a8642bb90.zip |
basic KNF done while i was looking for something else
Diffstat (limited to 'usr.bin/ssh/mac.c')
-rw-r--r-- | usr.bin/ssh/mac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/mac.c b/usr.bin/ssh/mac.c index e8b4267c3fc..bb342cef4aa 100644 --- a/usr.bin/ssh/mac.c +++ b/usr.bin/ssh/mac.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: mac.c,v 1.2 2001/04/05 10:42:51 markus Exp $"); +RCSID("$OpenBSD: mac.c,v 1.3 2001/12/19 07:18:56 deraadt Exp $"); #include <openssl/hmac.h> @@ -99,7 +99,7 @@ mac_valid(const char *names) return (0); maclist = cp = xstrdup(names); for ((p = strsep(&cp, MAC_SEP)); p && *p != '\0'; - (p = strsep(&cp, MAC_SEP))) { + (p = strsep(&cp, MAC_SEP))) { if (mac_init(NULL, p) < 0) { debug("bad mac %s [%s]", p, names); xfree(maclist); |