Code

merge: do not trust fstat(2) too much when checking interactiveness
authorJunio C Hamano <gitster@pobox.com>
Thu, 23 Feb 2012 19:24:44 +0000 (11:24 -0800)
committerJunio C Hamano <gitster@pobox.com>
Thu, 23 Feb 2012 20:48:26 +0000 (12:48 -0800)
commitd46f476cb26f647e4571b5ccfba516d30ee06c63
tree5ffcfbe4e448eb2729b09b552c4cba82a30fec75
parentf1f1b96e99fa064ed9f0da263d4b4eb0407b3ceb
merge: do not trust fstat(2) too much when checking interactiveness

The heuristic used by "git merge" to decide if it automatically gives an
editor upon clean automerge is to see if the standard input and the
standard output is the same device and is a tty, we are in an interactive
session.  "The same device" test was done by comparing fstat(2) result on
the two file descriptors (and they must match), and we asked isatty() only
for the standard input (we insist that they are the same device and there
is no point asking tty-ness of the standard output).

The stat(2) emulation in the Windows port however does not give a usable
value in the st_ino field, so even if the standard output is connected to
something different from the standard input, "The same device" test may
incorrectly return true. To accomodate it, add another isatty() check for
the standard output stream as well.

Reported-by: Erik Faye-Lund <kusmabite@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/merge.c