diff options
author | 2018-04-14 21:50:41 +0000 | |
---|---|---|
committer | 2018-04-14 21:50:41 +0000 | |
commit | 5a1e3f941186818a6e8a8033369834388e98eabd (patch) | |
tree | 85fc2ba1a26e7c340864fa72cf001456c0e63201 /usr.bin/ssh/ssh.c | |
parent | In case of a tcp read timeout, the destination host state needs to be (diff) | |
download | wireguard-openbsd-5a1e3f941186818a6e8a8033369834388e98eabd.tar.xz wireguard-openbsd-5a1e3f941186818a6e8a8033369834388e98eabd.zip |
don't free the %C expansion, it's used later for LocalCommand
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index e06542a2879..90cce2aa111 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.c,v 1.476 2018/04/10 00:10:49 djm Exp $ */ +/* $OpenBSD: ssh.c,v 1.477 2018/04/14 21:50:41 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1289,7 +1289,6 @@ main(int ac, char **av) (char *)NULL); free(cp); } - free(conn_hash_hex); if (config_test) { dump_client_config(&options, host); |