diff options
author | djm@openbsd.org <djm@openbsd.org> | 2018-06-08 05:35:36 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2018-06-09 05:10:59 +0200 |
commit | 0368889f82f63c82ff8db9f8c944d89e7c657db4 (patch) | |
tree | b5a186b29fa0e215e7e2dc9be0946aae18c732c9 /ssh.c | |
parent | upstream: fix some over-long lines and __func__ up some debug (diff) | |
download | openssh-0368889f82f63c82ff8db9f8c944d89e7c657db4.tar.xz openssh-0368889f82f63c82ff8db9f8c944d89e7c657db4.zip |
upstream: fix incorrect expansion of %i in
load_public_identity_files(); reported by Roumen Petrov
OpenBSD-Commit-ID: a827289e77149b5e0850d72a350c8b0300e7ef25
Diffstat (limited to '')
-rw-r--r-- | ssh.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.c,v 1.480 2018/06/06 18:22:41 djm Exp $ */ +/* $OpenBSD: ssh.c,v 1.481 2018/06/08 03:35:36 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -2118,7 +2118,7 @@ load_public_identity_files(struct passwd *pw) filename = percent_expand(cp, "d", pw->pw_dir, "h", host, - "i", host, + "i", uidstr, "l", thishost, "r", options.user, "u", pw->pw_name, |