- (djm) [auth1.c] Fix format string vulnerability in protocol 1 PAM
   account check failure path. The vulnerable format buffer is supplied
   from PAM and should not contain attacker-supplied data.
diff --git a/auth1.c b/auth1.c
index 834ef04..b8a2558 100644
--- a/auth1.c
+++ b/auth1.c
@@ -354,7 +354,7 @@
 					msg[len] = '\0';
 			else
 				msg = "Access denied.";
-			packet_disconnect(msg);
+			packet_disconnect("%s", msg);
 		}
 #endif