Re: [patch 02/16] const-expr.patch
From: Gary V. Vaughan <hidden>
Date: 2016-06-15 22:48:44
Hi Joshua, On Sat, May 01, 2010 at 03:21:24AM -0700, Joshua Juran wrote:
On Apr 27, 2010, at 6:57 AM, Gary V. Vaughan wrote:quoted
Index: b/remote.c ===================================================================--- a/remote.c +++ b/remote.c@@ -657,10 +657,9 @@ static struct refspec *parse_refspec_int int valid_fetch_refspec(const char *fetch_refspec_str) { - const char *fetch_refspec[] = { fetch_refspec_str }; struct refspec *refspec; - refspec = parse_refspec_internal(1, fetch_refspec, 1, 1); + refspec = parse_refspec_internal(1, &fetch_refspec_str, 1, 1); free_refspecs(refspec, 1); return !!refspec; }I'm the author of this patch.
I don't follow this list, and made this patch independently without reference to yours. However, attribution doesn't concern me, and I don't mean to tread on toes... so feel free to reassign attribution on push.
Signed-off-by: Joshua Juran <redacted>
Cheers, -- Gary V. Vaughan (gary@thewrittenword.com)