summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1170e80)
raw | patch | inline | side by side (parent: 1170e80)
author | Steven Grimm <koreth@midwinter.com> | |
Sat, 6 Jan 2007 03:14:04 +0000 (19:14 -0800) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sat, 6 Jan 2007 18:42:49 +0000 (10:42 -0800) |
Signed-off-by: Steven Grimm <koreth@midwinter.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
lockfile.c | patch | blob | history |
diff --git a/lockfile.c b/lockfile.c
index 731bbf3c9c312687714d19391e6e02ffde8eaebd..4824f4dc026e7b3f978fe4e9b2154335359e9d2e 100644 (file)
--- a/lockfile.c
+++ b/lockfile.c
{
int fd = lock_file(lk, path);
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;
}