Re: [PATCH 02/14] upload-pack.c: Refactor capability advertising

2016-05-04 Thread Junio C Hamano
Stefan Beller writes: > Instead of having the capabilities in a local string, keep them > in a struct outside the function. This will allow us in a later patch > to easily reuse the capabilities in version 2 of the protocol. > > Signed-off-by: Stefan Beller

Re: [PATCH 02/14] upload-pack.c: Refactor capability advertising

2016-04-29 Thread David Turner
On Fri, 2016-04-29 at 16:34 -0700, Stefan Beller wrote: > Instead of having the capabilities in a local string, keep them > in a struct outside the function. This will allow us in a later patch nit: s/struct/array/ -- To unsubscribe from this list: send the line "unsubscribe git" in the body of

[PATCH 02/14] upload-pack.c: Refactor capability advertising

2016-04-29 Thread Stefan Beller
Instead of having the capabilities in a local string, keep them in a struct outside the function. This will allow us in a later patch to easily reuse the capabilities in version 2 of the protocol. Signed-off-by: Stefan Beller --- upload-pack.c | 59