1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-12 18:13:50 -05:00

Add a \n at the end of an error message - oops.

[originally from svn r2169]
This commit is contained in:
Simon Tatham 2002-11-01 12:54:03 +00:00
parent a5da5adc07
commit 9c5fe60bfe

View File

@ -447,7 +447,7 @@ int main(int argc, char **argv)
error = back->init(NULL, &backhandle, cfg.host, cfg.port,
&realhost, nodelay);
if (error) {
fprintf(stderr, "Unable to open connection:\n%s", error);
fprintf(stderr, "Unable to open connection:\n%s\n", error);
return 1;
}
logctx = log_init(NULL);