Print a more accurate error message when we fail to create a lock file.
Signed-off-by: Steven Grimm <koreth@midwinter.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
1170e8026a
commit
f9e8a43a00
@ -49,7 +49,7 @@ int hold_lock_file_for_update(struct lock_file *lk, const char *path, int die_on
|
|||||||
{
|
{
|
||||||
int fd = lock_file(lk, path);
|
int fd = lock_file(lk, path);
|
||||||
if (fd < 0 && die_on_error)
|
if (fd < 0 && die_on_error)
|
||||||
die("unable to create '%s': %s", path, strerror(errno));
|
die("unable to create '%s.lock': %s", path, strerror(errno));
|
||||||
return fd;
|
return fd;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user