summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordjm <djm@openbsd.org>2019-10-04 04:13:39 +0000
committerdjm <djm@openbsd.org>2019-10-04 04:13:39 +0000
commit1a9fb5e77e13427890b49eaa28bbf751e2ea9e4a (patch)
tree4808d0f71cb415e471482a30eb018baad75ad5e3
parentmore sshsig regress tests: check key revocation, the check-novalidate (diff)
downloadwireguard-openbsd-1a9fb5e77e13427890b49eaa28bbf751e2ea9e4a.tar.xz
wireguard-openbsd-1a9fb5e77e13427890b49eaa28bbf751e2ea9e4a.zip
space
-rw-r--r--usr.bin/ssh/match.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/match.c b/usr.bin/ssh/match.c
index a0658122c4f..b896c18559d 100644
--- a/usr.bin/ssh/match.c
+++ b/usr.bin/ssh/match.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: match.c,v 1.39 2019/03/06 22:14:23 dtucker Exp $ */
+/* $OpenBSD: match.c,v 1.40 2019/10/04 04:13:39 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -239,7 +239,7 @@ match_user(const char *user, const char *host, const char *ipaddr,
return 0;
}
- if ((p = strchr(pattern,'@')) == NULL)
+ if ((p = strchr(pattern, '@')) == NULL)
return match_pattern(user, pattern);
pat = xstrdup(pattern);