refs.c: verify_lock should set errno to something meaningful
commit835e3c992fd453d172466be29283b55a792cac76
authorRonnie Sahlberg <sahlberg@google.com>
Fri, 20 Jun 2014 14:42:51 +0000 (20 07:42 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 14 Jul 2014 18:54:41 +0000 (14 11:54 -0700)
treedf0f27afd2571eff1ad12591d000834f80c333eb
parentbd3b02daec241651231f63b3fd8ee2a8ea1dac68
refs.c: verify_lock should set errno to something meaningful

Making errno when returning from verify_lock() meaningful, which
should almost but not completely fix

 * a bug in "git fetch"'s s_update_ref, which trusts the result of an
   errno == ENOTDIR check to detect D/F conflicts

ENOTDIR makes sense as a sign that a file was in the way of a
directory we wanted to create.  Should "git fetch" also look for
ENOTEMPTY or EEXIST to catch cases where a directory was in the way
of a file to be created?

Signed-off-by: Ronnie Sahlberg <sahlberg@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Acked-by: Michael Haggerty <mhagger@alum.mit.edu>
refs.c
refs.h