diff options
author | djm@openbsd.org <djm@openbsd.org> | 2019-10-04 06:13:39 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-10-04 06:34:05 +0200 |
commit | b7fbc75e119170f4d15c94a7fda4a1050e0871d6 (patch) | |
tree | 5a58bfb8b0551da380f3722d1357c8ad655def32 /match.c | |
parent | upstream: more sshsig regress tests: check key revocation, the (diff) | |
download | openssh-b7fbc75e119170f4d15c94a7fda4a1050e0871d6.tar.xz openssh-b7fbc75e119170f4d15c94a7fda4a1050e0871d6.zip |
upstream: space
OpenBSD-Commit-ID: 350648bcf00a2454e7ef998b7d88e42552b348ac
Diffstat (limited to 'match.c')
-rw-r--r-- | match.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 @@ -246,7 +246,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); |