summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 74b504f)
raw | patch | inline | side by side (parent: 74b504f)
author | David Rientjes <rientjes@google.com> | |
Mon, 14 Aug 2006 20:40:51 +0000 (13:40 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Tue, 15 Aug 2006 01:59:03 +0000 (18:59 -0700) |
Signed-off-by: David Rientjes <rientjes@google.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
upload-pack.c | patch | blob | history |
diff --git a/upload-pack.c b/upload-pack.c
index bbd6bd60b52d806be0a69324009755f49b070082..27e2abe36c54fbf4ff04a70a64e1985fc4a8cbd0 100644 (file)
--- a/upload-pack.c
+++ b/upload-pack.c
return 0;
}
-static int upload_pack(void)
+static void upload_pack(void)
{
reset_timeout();
head_ref(send_ref);
for_each_ref(send_ref);
packet_flush(1);
receive_needs();
- if (!want_obj.nr)
- return 0;
- get_common_commits();
- create_pack_file();
- return 0;
+ if (want_obj.nr) {
+ get_common_commits();
+ create_pack_file();
+ }
}
int main(int argc, char **argv)