diff options
author | djm@openbsd.org <djm@openbsd.org> | 2020-06-05 05:24:16 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2020-06-05 05:28:29 +0200 |
commit | 670428895739d1f79894bdb2457891c3afa60a59 (patch) | |
tree | c3b20ad69b5ecb9d70f32519262bccc89b3d9618 | |
parent | upstream: Correct historical comment: provos@ modified OpenSSH to (diff) | |
download | openssh-670428895739d1f79894bdb2457891c3afa60a59.tar.xz openssh-670428895739d1f79894bdb2457891c3afa60a59.zip |
upstream: wrap long line
OpenBSD-Commit-ID: ed405a12bd27bdc9c52e169bc5ff3529b4ebbbb2
-rw-r--r-- | sshconnect2.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sshconnect2.c b/sshconnect2.c index 08b4f8550..821af2150 100644 --- a/sshconnect2.c +++ b/sshconnect2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshconnect2.c,v 1.322 2020/05/13 09:52:41 djm Exp $ */ +/* $OpenBSD: sshconnect2.c,v 1.323 2020/06/05 03:24:16 djm Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * Copyright (c) 2008 Damien Miller. All rights reserved. @@ -1156,7 +1156,8 @@ key_sig_algorithm(struct ssh *ssh, const struct sshkey *key) while ((cp = strsep(&allowed, ",")) != NULL) { if (sshkey_type_from_name(cp) != key->type) continue; - tmp = match_list(sshkey_sigalg_by_name(cp), ssh->kex->server_sig_algs, NULL); + tmp = match_list(sshkey_sigalg_by_name(cp), + ssh->kex->server_sig_algs, NULL); if (tmp != NULL) alg = xstrdup(cp); free(tmp); |