upstream: fix build with DEBUG_PK enabled

OK dtucker@

OpenBSD-Commit-ID: ec1568cf27726e9638a0415481c20c406e7b441c
This commit is contained in:
mestre@openbsd.org 2018-08-28 12:17:45 +00:00 committed by Damien Miller
parent 2678833013
commit 086cc614f5
1 changed files with 2 additions and 2 deletions

View File

@ -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. * Copyright (c) 2000 Markus Friedl. All rights reserved.
* *
@ -79,7 +79,7 @@ userauth_hostbased(struct ssh *ssh)
cuser, chost, pkalg, slen); cuser, chost, pkalg, slen);
#ifdef DEBUG_PK #ifdef DEBUG_PK
debug("signature:"); debug("signature:");
sshbuf_dump_data(sig, siglen, stderr); sshbuf_dump_data(sig, slen, stderr);
#endif #endif
pktype = sshkey_type_from_name(pkalg); pktype = sshkey_type_from_name(pkalg);
if (pktype == KEY_UNSPEC) { if (pktype == KEY_UNSPEC) {