summaryrefslogtreecommitdiff
path: root/readconf.c
diff options
context:
space:
mode:
authordtucker@openbsd.org <dtucker@openbsd.org>2020-04-03 03:12:11 +0000
committerDamien Miller <djm@mindrot.org>2020-04-03 15:35:28 +1100
commiteece243666d44ceb710d004624c5c7bdc05454bc (patch)
tree18895d7deb50c528afd1996496d49823a7d3f3d0 /readconf.c
parentd5318a784d016478fc8da90a38d9062c51c10432 (diff)
downloadopenssh-git-eece243666d44ceb710d004624c5c7bdc05454bc.tar.gz
upstream: %C expansion just added to Match Exec should include
remote user not local user. OpenBSD-Commit-ID: 80f1d976938f2a55ee350c11d8b796836c8397e2
Diffstat (limited to 'readconf.c')
-rw-r--r--readconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/readconf.c b/readconf.c
index 1a3b2db2..4a5dc3aa 100644
--- a/readconf.c
+++ b/readconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: readconf.c,v 1.327 2020/04/03 02:27:12 dtucker Exp $ */
+/* $OpenBSD: readconf.c,v 1.328 2020/04/03 03:12:11 dtucker Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -674,7 +674,7 @@ match_cfg_line(Options *options, char **condition, struct passwd *pw,
snprintf(uidstr, sizeof(uidstr), "%llu",
(unsigned long long)pw->pw_uid);
conn_hash_hex = ssh_connection_hash(thishost, host,
- portstr, pw->pw_name);
+ portstr, ruser);
cmd = percent_expand(arg,
"C", conn_hash_hex,