From b4141daf2bffd60ee76a5f748fd9b37e51c57e2e Mon Sep 17 00:00:00 2001 From: joerg Date: Tue, 24 May 2011 14:26:55 +0000 Subject: [PATCH] Use proper format string --- crypto/external/bsd/openssh/dist/auth1.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/external/bsd/openssh/dist/auth1.c b/crypto/external/bsd/openssh/dist/auth1.c index e35038edd9bb..62888a0b22c2 100644 --- a/crypto/external/bsd/openssh/dist/auth1.c +++ b/crypto/external/bsd/openssh/dist/auth1.c @@ -1,4 +1,4 @@ -/* $NetBSD: auth1.c,v 1.3 2010/11/21 18:29:48 adam Exp $ */ +/* $NetBSD: auth1.c,v 1.4 2011/05/24 14:26:55 joerg Exp $ */ /* $OpenBSD: auth1.c,v 1.74 2010/06/25 08:46:17 djm Exp $ */ /* * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -12,7 +12,7 @@ */ #include "includes.h" -__RCSID("$NetBSD: auth1.c,v 1.3 2010/11/21 18:29:48 adam Exp $"); +__RCSID("$NetBSD: auth1.c,v 1.4 2011/05/24 14:26:55 joerg Exp $"); #include #include @@ -390,7 +390,7 @@ do_authloop(Authctxt *authctxt) msg[len] = '\0'; else msg = "Access denied."; - packet_disconnect(msg); + packet_disconnect("%s", msg); } #endif