aboutsummaryrefslogtreecommitdiff
path: root/fetch.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-06-06 16:42:52 -0700
committerJunio C Hamano <junkio@cox.net>2006-06-06 16:42:52 -0700
commit9941afc051d953ee5e8fd9a8a27c5cd659ef9552 (patch)
tree1c2e8296f1cb0e97e341c220a5246bd3154ced7a /fetch.c
parent44fe4f522e63d3f01174459af674af2f9c293671 (diff)
parente5f38ec3c5d8553413501e6141932b8ccc7aceb4 (diff)
downloadgit-9941afc051d953ee5e8fd9a8a27c5cd659ef9552.tar.xz
Merge branch 'jc/lockfile'
* jc/lockfile: ref-log: style fixes. refs.c: convert it to use lockfile interface. Make index file locking code reusable to others.
Diffstat (limited to 'fetch.c')
-rw-r--r--fetch.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/fetch.c b/fetch.c
index e040ef97b6..cf6c99490c 100644
--- a/fetch.c
+++ b/fetch.c
@@ -150,7 +150,8 @@ static int process(struct object *obj)
if (has_sha1_file(obj->sha1)) {
/* We already have it, so we should scan it now. */
obj->flags |= TO_SCAN;
- } else {
+ }
+ else {
if (obj->flags & COMPLETE)
return 0;
prefetch(obj->sha1);
@@ -255,7 +256,8 @@ int pull(char *target)
if (write_ref_log_details) {
msg = xmalloc(strlen(write_ref_log_details) + 12);
sprintf(msg, "fetch from %s", write_ref_log_details);
- } else
+ }
+ else
msg = NULL;
ret = write_ref_sha1(lock, sha1, msg ? msg : "fetch (unknown)");
if (msg)