From 8d69b472d81bd0760fbcff753e473fbd2164ac48 Mon Sep 17 00:00:00 2001 From: simon Date: Fri, 1 Nov 2002 12:54:51 +0000 Subject: [PATCH] Replace a \r\n with an ordinary \n - this isn't Windows! git-svn-id: svn://svn.tartarus.org/sgt/putty@2171 cda61777-01e9-0310-a592-d414129be87e --- unix/uxcons.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unix/uxcons.c b/unix/uxcons.c index 844b674f..6b3da51b 100644 --- a/unix/uxcons.c +++ b/unix/uxcons.c @@ -290,7 +290,7 @@ int console_get_line(const char *prompt, char *str, str[i] = '\0'; if (is_pw) - fputs("\r\n", stdout); + fputs("\n", stdout); } return 1; } -- 2.11.0