diff options
-rw-r--r-- | sftp.c | 6 | ||||
-rw-r--r-- | ssh-add.c | 4 |
2 files changed, 5 insertions, 5 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sftp.c,v 1.167 2014/10/06 00:47:15 djm Exp $ */ | 1 | /* $OpenBSD: sftp.c,v 1.168 2014/11/26 18:34:51 millert Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> | 3 | * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> |
4 | * | 4 | * |
@@ -2084,8 +2084,8 @@ interactive_loop(struct sftp_conn *conn, char *file1, char *file2) | |||
2084 | free(dir); | 2084 | free(dir); |
2085 | } | 2085 | } |
2086 | 2086 | ||
2087 | setlinebuf(stdout); | 2087 | setvbuf(stdout, NULL, _IOLBF, 0); |
2088 | setlinebuf(infile); | 2088 | setvbuf(infile, NULL, _IOLBF, 0); |
2089 | 2089 | ||
2090 | interactive = !batchmode && isatty(STDIN_FILENO); | 2090 | interactive = !batchmode && isatty(STDIN_FILENO); |
2091 | err = 0; | 2091 | err = 0; |
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssh-add.c,v 1.113 2014/07/09 14:15:56 benno Exp $ */ | 1 | /* $OpenBSD: ssh-add.c,v 1.114 2014/11/26 18:34:51 millert Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -437,7 +437,7 @@ main(int argc, char **argv) | |||
437 | 437 | ||
438 | OpenSSL_add_all_algorithms(); | 438 | OpenSSL_add_all_algorithms(); |
439 | 439 | ||
440 | setlinebuf(stdout); | 440 | setvbuf(stdout, NULL, _IOLBF, 0); |
441 | 441 | ||
442 | /* At first, get a connection to the authentication agent. */ | 442 | /* At first, get a connection to the authentication agent. */ |
443 | ac = ssh_get_authentication_connection(); | 443 | ac = ssh_get_authentication_connection(); |