X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;ds=inline;f=lockfile.c;h=4824f4dc026e7b3f978fe4e9b2154335359e9d2e;hb=c2cb959fe7c7e5736cead7edf2b69be7e072a543;hp=261baff049cd8b2e4d1b1a269992851eb00b2aa8;hpb=85023577a8f4b540aa64aa37f6f44578c0c305a3;p=git.git diff --git a/lockfile.c b/lockfile.c index 261baff04..4824f4dc0 100644 --- a/lockfile.c +++ b/lockfile.c @@ -27,9 +27,12 @@ static int lock_file(struct lock_file *lk, const char *path) sprintf(lk->filename, "%s.lock", path); fd = open(lk->filename, O_RDWR | O_CREAT | O_EXCL, 0666); if (0 <= fd) { - if (!lk->next) { + if (!lk->on_list) { lk->next = lock_file_list; lock_file_list = lk; + lk->on_list = 1; + } + if (lock_file_list) { signal(SIGINT, remove_lock_file_on_signal); atexit(remove_lock_file); } @@ -37,6 +40,8 @@ static int lock_file(struct lock_file *lk, const char *path) return error("cannot fix permission bits on %s", lk->filename); } + else + lk->filename[0] = 0; return fd; } @@ -44,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); 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; }