From d833765b78f0b3af64cdb230f7005a95692a4bff Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Fri, 1 Nov 2002 12:54:51 +0000 Subject: [PATCH] Replace a \r\n with an ordinary \n - this isn't Windows! [originally from svn r2171] --- 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; }