From de1c70a5d4e124f4068b9435d3866fdffda10ff6 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sat, 3 Mar 2001 16:05:52 +0000 Subject: [PATCH] Remove a spurious \r\n from an Event Log message [originally from svn r978] --- ssh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssh.c b/ssh.c index f087bd91..0939c9f0 100644 --- a/ssh.c +++ b/ssh.c @@ -3152,7 +3152,7 @@ static void do_ssh2_authconn(unsigned char *in, int inlen, int ispkt) ssh2_pkt_defer(); } ssh2_pkt_defersend(); - logevent("Sent password\r\n"); + logevent("Sent password"); type = AUTH_TYPE_PASSWORD; } else { c_write_str("No supported authentication methods left to try!\r\n");