[PATCH] grep: correctly initialize help-all option

2015-04-09 Thread Patrick Steinhardt
The help-all option is being initialized with a wrong value. While being semantically wrong this can also cause a gcc segmentation fault on ARMv7 hardfloat platforms with a hardened toolchain. Fix this by initializing with the correct value. --- builtin/grep.c | 2 +- 1 file changed, 1

Re: [PATCH 0/3] Make httpd tests run

2015-04-09 Thread Kyle J. McKay
On Apr 8, 2015, at 08:05, Michael J Gruber wrote: This series grew from an attempt at enlarging my personal test run coverage on a standard Fedora 21 64bit box. Aka chain-lint fall-out. With 1/3, I get all httpd tests to run (when port is set, of course). 2/3 and 3/3 are an attempt at

Re: [RFC/PATCH 1/4] submodules: implement synchronizing of remotes.

2015-04-09 Thread Patrick Steinhardt
On Wed, Apr 08, 2015 at 08:46:28AM -0700, Junio C Hamano wrote: On Wed, Apr 8, 2015 at 3:58 AM, Patrick Steinhardt p...@pks.im wrote: Previously it was not possible to specify custom remotes for submodules. This feature has now been implemented and can be I am not going to say whether it

Re: [PATCH] fix global bash variable leak on __gitcompappend

2015-04-09 Thread Marcio Almada
2015-04-09 0:56 GMT-03:00 Junio C Hamano gits...@pobox.com: Márcio Almada marcio.w...@gmail.com writes: --- contrib/completion/git-completion.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Nicely found and corrected. Please sign-off your patch and Cc area experts if you can

Re: [WIP/RFH/PATCH 3/3] t/lib-git-svn: adjust config to apache 2.4

2015-04-09 Thread Eric Wong
Michael J Gruber g...@drmicha.warpmail.net wrote: So debian stable has apache 2.2? That explains why many don't see these problems. Right. So, before 3/3, t9118 and such do run the web server and test git-svn against that for you? Yes. -- To unsubscribe from this list: send the line

Re: A good time to pull from your gitk tree?

2015-04-09 Thread Marc Branchaud
On 15-03-24 07:06 PM, Paul Mackerras wrote: On Mon, Mar 23, 2015 at 12:03:37PM -0700, Junio C Hamano wrote: Is it a good time for me to pull from you, or do you recommend me to wait for a bit, expecting more? We'll go in the pre-release freeze soon-ish, so I thought I should ping. Now is

Re: [msysGit] Re:

2015-04-09 Thread Mamta
I was not cross posting. Posted on this thread after you mentioned in your post that writing on msysgit user group is futile. Thought I wouldn't get further replies on my questions there. Plus I got a feeling that I will get more in depth information here. Sorry if I sent a wrong message On

Re: [msysGit] Re:

2015-04-09 Thread Konstantin Khomoutov
On Wed, 08 Apr 2015 23:58:58 +0200 Thomas Braun thomas.br...@virtuell-zuhause.de wrote: [...] I am trying to run the latest git 1.9.5 installer on windows. When I run strings on libneon-25.dll it shows this: ./libneon-25.dll:OpenSSL 1.0.1h 5 Jun 2014 But when I load this

[PATCH v2] grep: correctly initialize help-all option

2015-04-09 Thread Patrick Steinhardt
The help-all option is being initialized with a wrong value. While being semantically wrong this can also cause a segmentation fault in gcc on ARMv7 hardfloat platforms with a hardened toolchain. Fix this by initializing with a NULL value. Signed-off-by: Patrick Steinhardt p...@pks.im --- Added

Re: [PATCH] fix global bash variable leak on __gitcompappend

2015-04-09 Thread SZEDER Gábor
Quoting Junio C Hamano gits...@pobox.com: Márcio Almada marcio.w...@gmail.com writes: --- contrib/completion/git-completion.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Nicely found and corrected. Please sign-off your patch and Cc area experts if you can find them (I'll do

Re: [PATCH] fix global bash variable leak on __gitcompappend

2015-04-09 Thread Eric Sunshine
On Thu, Apr 9, 2015 at 9:52 AM, Marcio Almada marcio.w...@gmail.com wrote: 2015-04-09 0:56 GMT-03:00 Junio C Hamano gits...@pobox.com: Márcio Almada marcio.w...@gmail.com writes: contrib/completion/git-completion.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Nicely found and

Re: [PATCH 0/3] Make httpd tests run

2015-04-09 Thread Kyle J. McKay
On Apr 9, 2015, at 06:04, Kyle J. McKay wrote: On Apr 8, 2015, at 08:05, Michael J Gruber wrote: This series grew from an attempt at enlarging my personal test run coverage on a standard Fedora 21 64bit box. Aka chain-lint fall-out. With 1/3, I get all httpd tests to run (when port is set,

Re: [WIP/RFH/PATCH 3/3] t/lib-git-svn: adjust config to apache 2.4

2015-04-09 Thread Michael J Gruber
Eric Wong venit, vidit, dixit 08.04.2015 22:26: Michael J Gruber g...@drmicha.warpmail.net wrote: The current config is tailored to apache 2.2. Apache 2.4 fails to start with it. Adjust the config to apache 2.4. Signed-off-by: Michael J Gruber g...@drmicha.warpmail.net --- 1/3 and 2/3

Re: [PATCH 1/3] t/lib-httpd: load mod_unixd

2015-04-09 Thread Michael J Gruber
Torsten Bögershausen venit, vidit, dixit 08.04.2015 23:47: On 2015-04-08 17.05, Michael J Gruber wrote: With the current config, apache 2.4.10 will not be started and the httpd tests will not run. Enable mod_unixd to make the httpd tests run. Signed-off-by: Michael J Gruber

Re: [PATCH] grep: correctly initialize help-all option

2015-04-09 Thread Eric Sunshine
On Thu, Apr 9, 2015 at 9:41 AM, Patrick Steinhardt p...@pks.im wrote: The help-all option is being initialized with a wrong value. While being semantically wrong this can also cause a gcc segmentation fault on ARMv7 hardfloat platforms with a hardened toolchain. Fix this by initializing with