Re: [PATCH] Rewritten fetch-pack.c:filter_refs() using starts_with() instead of memcmp()

2014-03-21 Thread Eric Sunshine
Thanks for the submission. Comments below to give you a taste of the Git review process... On Thu, Mar 20, 2014 at 6:04 AM, MustafaOrkunAcar mustafaorkuna...@gmail.com wrote: Subject: Rewritten fetch-pack.c:filter_refs() using starts_with() instead of memcmp() Use imperative mood: Rewrite

[PATCH] Rewritten fetch-pack.c:filter_refs() using starts_with() instead of memcmp()

2014-03-20 Thread MustafaOrkunAcar
Hi, I have completed one of the microprojects -14th one: Change fetch-pack.c:filter_refs() to use starts_with() instead of memcmp(). The only line in the function filter_refs() containing memcmp() is changed with starts_with(). I plan to apply for GSoC 2014. Any feedback is appreciated.