summaryrefslogtreecommitdiff
path: root/ssh-add.c
diff options
context:
space:
mode:
authormillert@openbsd.org <millert@openbsd.org>2014-11-26 18:34:51 +0000
committerDamien Miller <djm@mindrot.org>2014-12-05 09:28:50 +1100
commitdb995f2eed5fc432598626fa3e30654503bf7151 (patch)
treed86efcd4ad4cc18a12d5eb1bd7ec04af9a48a345 /ssh-add.c
parent72bba3d179ced8b425272efe6956a309202a91f3 (diff)
upstream commit
Prefer setvbuf() to setlinebuf() for portability; ok deraadt@
Diffstat (limited to 'ssh-add.c')
-rw-r--r--ssh-add.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh-add.c b/ssh-add.c
index 78a3359ad..ba11aa150 100644
--- a/ssh-add.c
+++ b/ssh-add.c
@@ -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();