1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-22 06:38:37 -05:00

Replace a \r\n with an ordinary \n - this isn't Windows!

[originally from svn r2171]
This commit is contained in:
Simon Tatham 2002-11-01 12:54:51 +00:00
parent 057eabf46d
commit d833765b78

View File

@ -290,7 +290,7 @@ int console_get_line(const char *prompt, char *str,
str[i] = '\0'; str[i] = '\0';
if (is_pw) if (is_pw)
fputs("\r\n", stdout); fputs("\n", stdout);
} }
return 1; return 1;
} }