openssh/upstream-fix-build-with-DEBUG_PK-enabled.patch

35 lines
1.0 KiB
Diff
Raw Normal View History

2019-09-30 11:10:51 -04:00
From 086cc614f550b7d4f100c95e472a6b6b823938ab Mon Sep 17 00:00:00 2001
From: "mestre@openbsd.org" <mestre@openbsd.org>
Date: Tue, 28 Aug 2018 12:17:45 +0000
Subject: [PATCH 005/294] upstream: fix build with DEBUG_PK enabled
OK dtucker@
OpenBSD-Commit-ID: ec1568cf27726e9638a0415481c20c406e7b441c
---
auth2-hostbased.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/auth2-hostbased.c b/auth2-hostbased.c
index 3593932..73944bc 100644
--- a/auth2-hostbased.c
+++ b/auth2-hostbased.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auth2-hostbased.c,v 1.36 2018/07/31 03:10:27 djm Exp $ */
+/* $OpenBSD: auth2-hostbased.c,v 1.37 2018/08/28 12:17:45 mestre Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
*
@@ -79,7 +79,7 @@ userauth_hostbased(struct ssh *ssh)
cuser, chost, pkalg, slen);
#ifdef DEBUG_PK
debug("signature:");
- sshbuf_dump_data(sig, siglen, stderr);
+ sshbuf_dump_data(sig, slen, stderr);
#endif
pktype = sshkey_type_from_name(pkalg);
if (pktype == KEY_UNSPEC) {
--
1.8.3.1