git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mingw: work around stat-limitation
@ 2012-02-23 20:25 Erik Faye-Lund
  2012-02-23 21:26 ` [msysGit] " Johannes Schindelin
  0 siblings, 1 reply; 4+ messages in thread
From: Erik Faye-Lund @ 2012-02-23 20:25 UTC (permalink / raw)
  To: git; +Cc: gitster, j6t, msysgit

Our stat implementation for Windows always sets st_ino to 0. This
means that checking if isatty(0) and comparing the reported inodes
of stdout and stdin is not sufficient to detect that both are
pointing to the same TTY.

Luckily, there's only one console on Windows, so adding a check for
isatty(1) should do the trick. For platforms where inodes are
reported correctly, this should still be correct.

Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com>
---

Here's a proper patch for this glitch.

 builtin/merge.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/builtin/merge.c b/builtin/merge.c
index ed0f959..bef01e3 100644
--- a/builtin/merge.c
+++ b/builtin/merge.c
@@ -1130,6 +1130,7 @@ static int default_edit_option(void)
 	return (!fstat(0, &st_stdin) &&
 		!fstat(1, &st_stdout) &&
 		isatty(0) &&
+		isatty(1) &&
 		st_stdin.st_dev == st_stdout.st_dev &&
 		st_stdin.st_ino == st_stdout.st_ino &&
 		st_stdin.st_mode == st_stdout.st_mode);
-- 
1.7.9

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-02-23 22:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-23 20:25 [PATCH] mingw: work around stat-limitation Erik Faye-Lund
2012-02-23 21:26 ` [msysGit] " Johannes Schindelin
2012-02-23 21:36   ` Erik Faye-Lund
2012-02-23 22:37     ` Johannes Schindelin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).