Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-09-10 15:16:39 +0400
committerJunio C Hamano <junkio@cox.net>2006-09-11 00:39:24 +0400
commit8142f603b9955648228549d2e83ace7fbe834114 (patch)
tree3a0d7d9794316715acbdb32f4e7032ebb359ee19 /builtin-archive.c
parent326711c16879792da8d7159bf29d080569c3a1e0 (diff)
archive: force line buffered output to stderr
Otherwise the remote notification that comes with -v option can get clumped together. Signed-off-by: Junio C Hamano <junkio@cox.net> (cherry picked from a675cda60ead41f439b04bc69e0f19ace04e59d3 commit)
Diffstat (limited to 'builtin-archive.c')
-rw-r--r--builtin-archive.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/builtin-archive.c b/builtin-archive.c
index c70488c537..3a8be57e15 100644
--- a/builtin-archive.c
+++ b/builtin-archive.c
@@ -238,6 +238,8 @@ int cmd_archive(int argc, const char **argv, const char *prefix)
if (remote)
return run_remote_archiver(remote, argc, argv);
+ setlinebuf(stderr);
+
memset(&ar, 0, sizeof(ar));
tree_idx = parse_archive_args(argc, argv, &ar);
if (prefix == NULL)