diff options
author | Curl Upstream <curl-library@lists.haxx.se> | 2022-05-11 08:11:15 +0200 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-05-16 11:43:24 -0400 |
commit | 9d8f81f4f8ac4a234ced9c446958fdfcaed4faa3 (patch) | |
tree | 24a75f8e8a5f38c6d227189b3a76f4d35edb3dc0 /lib/vssh | |
parent | 2a9bc9ebf09fbafa5378d143083434204e9f233e (diff) | |
download | cmake-9d8f81f4f8ac4a234ced9c446958fdfcaed4faa3.tar.gz |
curl 2022-05-11 (462196e6)
Code extracted from:
https://github.com/curl/curl.git
at commit 462196e6b4a47f924293a0e26b8e9c23d37ac26f (curl-7_83_1).
Diffstat (limited to 'lib/vssh')
-rw-r--r-- | lib/vssh/ssh.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/vssh/ssh.h b/lib/vssh/ssh.h index 7972081ec6..30d82e5764 100644 --- a/lib/vssh/ssh.h +++ b/lib/vssh/ssh.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -131,8 +131,8 @@ struct ssh_conn { /* common */ const char *passphrase; /* pass-phrase to use */ - char *rsa_pub; /* path name */ - char *rsa; /* path name */ + char *rsa_pub; /* strdup'ed public key file */ + char *rsa; /* strdup'ed private key file */ bool authed; /* the connection has been authenticated fine */ bool acceptfail; /* used by the SFTP_QUOTE (continue if quote command fails) */ |