* [PATCH 28/28] makes upload_pack void
@ 2006-08-14 20:40 David Rientjes
2006-08-14 22:45 ` Nikolai Weibull
0 siblings, 1 reply; 4+ messages in thread
From: David Rientjes @ 2006-08-14 20:40 UTC (permalink / raw)
To: git
Makes upload_pack void and removes conditional return.
David
Signed-off-by: David Rientjes <rientjes@google.com>
---
upload-pack.c | 11 +++++------
1 files changed, 5 insertions(+), 6 deletions(-)
diff --git a/upload-pack.c b/upload-pack.c
index bbd6bd6..27e2abe 100644
--- a/upload-pack.c
+++ b/upload-pack.c
@@ -459,18 +459,17 @@ static int send_ref(const char *refname,
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)
--
1.4.2.g89bb-dirty
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 28/28] makes upload_pack void
2006-08-14 20:40 [PATCH 28/28] makes upload_pack void David Rientjes
@ 2006-08-14 22:45 ` Nikolai Weibull
2006-08-14 22:51 ` David Rientjes
0 siblings, 1 reply; 4+ messages in thread
From: Nikolai Weibull @ 2006-08-14 22:45 UTC (permalink / raw)
To: David Rientjes; +Cc: git
On 8/14/06, David Rientjes <rientjes@google.com> wrote:
> Makes upload_pack void and removes conditional return.
> -static int upload_pack(void)
> +static void upload_pack(void)
I don't know for sure, but I'm guessing the intention was to be able
to return a failing code /if/ there ever was a condition where
upload_pack() would fail, e.g., if send_ref() would return a status
code instead of die():ing if it can't parse the given sha1. In a
future libification, the change of return type may have to be
reverted.
nikolai
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 28/28] makes upload_pack void
2006-08-14 22:45 ` Nikolai Weibull
@ 2006-08-14 22:51 ` David Rientjes
2006-08-14 23:03 ` Nikolai Weibull
0 siblings, 1 reply; 4+ messages in thread
From: David Rientjes @ 2006-08-14 22:51 UTC (permalink / raw)
To: Nikolai Weibull; +Cc: git
On Tue, 15 Aug 2006, Nikolai Weibull wrote:
> I don't know for sure, but I'm guessing the intention was to be able
> to return a failing code /if/ there ever was a condition where
> upload_pack() would fail, e.g., if send_ref() would return a status
> code instead of die():ing if it can't parse the given sha1. In a
> future libification, the change of return type may have to be
> reverted.
>
Of course.
If upload_pack were modified to return an error code based on a specific code
path, I trust the implementer would know how to change void to int.
David
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 28/28] makes upload_pack void
2006-08-14 22:51 ` David Rientjes
@ 2006-08-14 23:03 ` Nikolai Weibull
0 siblings, 0 replies; 4+ messages in thread
From: Nikolai Weibull @ 2006-08-14 23:03 UTC (permalink / raw)
To: David Rientjes; +Cc: git
On 8/15/06, David Rientjes <rientjes@google.com> wrote:
> On Tue, 15 Aug 2006, Nikolai Weibull wrote:
> > I don't know for sure, but I'm guessing the intention was to be able
> > to return a failing code /if/ there ever was a condition where
> > upload_pack() would fail, e.g., if send_ref() would return a status
> > code instead of die():ing if it can't parse the given sha1. In a
> > future libification, the change of return type may have to be
> > reverted.
> Of course.
>
> If upload_pack were modified to return an error code based on a specific code
> path, I trust the implementer would know how to change void to int.
So do I. However, I trust that whoever implemented send_ref() knew
about void. (See how easy it was to do what you did but the other way
around?)
It was just a comment. I don't have anything against the patch as such.
nikolai
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2006-08-14 23:03 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-14 20:40 [PATCH 28/28] makes upload_pack void David Rientjes
2006-08-14 22:45 ` Nikolai Weibull
2006-08-14 22:51 ` David Rientjes
2006-08-14 23:03 ` Nikolai Weibull
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).