diff options
author | dtucker@openbsd.org <dtucker@openbsd.org> | 2019-04-23 13:56:41 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-05-08 10:42:03 +0200 |
commit | 3a7db919d5dd09f797971b3cf8ee301767459774 (patch) | |
tree | 8904af4e74b42c98c0e0b2b5df8646c5a250b2cc /clientloop.c | |
parent | upstream: Document new default RSA key size. From (diff) | |
download | openssh-3a7db919d5dd09f797971b3cf8ee301767459774.tar.xz openssh-3a7db919d5dd09f797971b3cf8ee301767459774.zip |
upstream: Use the LogLevel typdef instead of int where appropriate. Patch from Markus Schmidt via openssh-unix-dev, ok markus@
OpenBSD-Commit-ID: 4c0f0f458e3da7807806b35e3eb5c1e8403c968a
Diffstat (limited to 'clientloop.c')
-rw-r--r-- | clientloop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clientloop.c b/clientloop.c index 086c0dfe8..755f29231 100644 --- a/clientloop.c +++ b/clientloop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clientloop.c,v 1.322 2019/03/29 11:31:40 djm Exp $ */ +/* $OpenBSD: clientloop.c,v 1.323 2019/04/23 11:56:41 dtucker Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1881,7 +1881,7 @@ static void update_known_hosts(struct hostkeys_update_ctx *ctx) { int r, was_raw = 0; - int loglevel = options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK ? + LogLevel loglevel = options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK ? SYSLOG_LEVEL_INFO : SYSLOG_LEVEL_VERBOSE; char *fp, *response; size_t i; |