X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=update-ref.c;h=ba4bf5153efb38914f66658c59784b58d8b69a0a;hb=50ac7408018209a2829b7948119270fec7e14ec8;hp=65dc3d6385756a11aac257a3ed6a9dfcb68cce53;hpb=f51248eb482a7a0feacb04d02119c94d35845975;p=git.git diff --git a/update-ref.c b/update-ref.c index 65dc3d63..ba4bf515 100644 --- a/update-ref.c +++ b/update-ref.c @@ -19,11 +19,13 @@ static int re_verify(const char *path, unsigned char *oldsha1, unsigned char *cu int main(int argc, char **argv) { char *hex; - const char *refname, *value, *oldval, *path, *lockpath; + const char *refname, *value, *oldval, *path; + char *lockpath; unsigned char sha1[20], oldsha1[20], currsha1[20]; int fd, written; setup_git_directory(); + git_config(git_default_config); if (argc < 3 || argc > 4) usage(git_update_ref_usage); @@ -42,13 +44,15 @@ int main(int argc, char **argv) if (oldval) { if (memcmp(currsha1, oldsha1, 20)) - die("Ref %s changed to %s", refname, sha1_to_hex(currsha1)); + die("Ref %s is at %s but expected %s", refname, sha1_to_hex(currsha1), sha1_to_hex(oldsha1)); /* Nothing to do? */ if (!memcmp(oldsha1, sha1, 20)) exit(0); } path = strdup(path); lockpath = mkpath("%s.lock", path); + if (safe_create_leading_directories(lockpath) < 0) + die("Unable to create all of %s", lockpath); fd = open(lockpath, O_CREAT | O_EXCL | O_WRONLY, 0666); if (fd < 0)