From 9bac67a05ab34f89636afc98d11e7883d226ca75 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Wed, 9 May 2012 09:04:32 +0200 Subject: [PATCH] bind: Fix build. --- src/bind.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bind.c b/src/bind.c index b87d47b2..59ebc1e8 100644 --- a/src/bind.c +++ b/src/bind.c @@ -209,7 +209,8 @@ int ssh_bind_listen(ssh_bind sshbind) { if (ssh_key_type(sshbind->dsa) != SSH_KEYTYPE_DSS) { ssh_set_error(sshbind, SSH_FATAL, - "The DSA host key has the wrong type: %d"); + "The DSA host key has the wrong type: %d", + ssh_key_type(sshbind->dsa)); ssh_key_free(sshbind->dsa); return SSH_ERROR; }