Module Name: src
Committed By: joerg
Date: Tue May 24 14:26:55 UTC 2011
Modified Files:
src/crypto/external/bsd/openssh/dist: auth1.c
Log Message:
Use proper format string
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/crypto/external/bsd/openssh/dist/auth1.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/crypto/external/bsd/openssh/dist/auth1.c
diff -u src/crypto/external/bsd/openssh/dist/auth1.c:1.3 src/crypto/external/bsd/openssh/dist/auth1.c:1.4
--- src/crypto/external/bsd/openssh/dist/auth1.c:1.3 Sun Nov 21 18:29:48 2010
+++ src/crypto/external/bsd/openssh/dist/auth1.c Tue May 24 14:26:55 2011
@@ -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 <[email protected]>, 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 <sys/types.h>
#include <sys/queue.h>
@@ -390,7 +390,7 @@
msg[len] = '\0';
else
msg = "Access denied.";
- packet_disconnect(msg);
+ packet_disconnect("%s", msg);
}
#endif