summaryrefslogtreecommitdiffhomepage
path: root/cli-kex.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2015-12-15 21:55:51 +0800
committerMatt Johnston <matt@ucc.asn.au>2015-12-15 21:55:51 +0800
commit3d33e65a3546193e05eb469d7c5a9b2b0931420d (patch)
tree8bca45fed4c974af5237f824850798a3d0d4fc1e /cli-kex.c
parent2f62128297bc22c22f0da6617eeae53a1cd90dd2 (diff)
parent5ab562f69531a2d5438d22c0918003894e6cec0d (diff)
Merge pull request #18 from annulen/dbclient_syslog
Support syslog logging in dbclient.
Diffstat (limited to 'cli-kex.c')
-rw-r--r--cli-kex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli-kex.c b/cli-kex.c
index 07ee431..077fec9 100644
--- a/cli-kex.c
+++ b/cli-kex.c
@@ -190,7 +190,7 @@ static void ask_to_confirm(unsigned char* keyblob, unsigned int keybloblen,
fp = sign_key_fingerprint(keyblob, keybloblen);
if (cli_opts.always_accept_key) {
- fprintf(stderr, "\nHost '%s' key accepted unconditionally.\n(%s fingerprint %s)\n",
+ dropbear_log(LOG_INFO, "\nHost '%s' key accepted unconditionally.\n(%s fingerprint %s)\n",
cli_opts.remotehost,
algoname,
fp);
@@ -290,7 +290,7 @@ static void checkhostkey(unsigned char* keyblob, unsigned int keybloblen) {
int ret;
if (cli_opts.no_hostkey_check) {
- fprintf(stderr, "Caution, skipping hostkey check for %s\n", cli_opts.remotehost);
+ dropbear_log(LOG_INFO, "Caution, skipping hostkey check for %s\n", cli_opts.remotehost);
return;
}