From 0d7d66039b614b642c775432fd64aa8c11f9a64d Mon Sep 17 00:00:00 2001 From: Herbert Xu Date: Sat, 27 Jun 2009 21:00:39 +0800 Subject: [EXPAND] Fix quoted pattern patch breakage The change [EXPAND] Do not quote back slashes in parameter expansions outside quotes broke quote removal after parameter expansion. This is because its effecte extended beyond that of quoted patterns. This patch fixes this by limiting the change to just quoted patterns. Signed-off-by: Herbert Xu --- ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 2f52f75..e6a1d26 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-06-27 Herbert Xu + + * Fix quoted pattern patch breakage. + 2009-05-23 Herbert Xu * Fix incorrect savefd conversions. -- cgit 1.4.1 put type='submit' value='switch'/> DON'T USE THIS! --- web frontend for git
about summary refs log tree commit diff
Commit message (Collapse)Author
2013-04-10Add branch-sort and repo.branch-sort options.Jason A. Donenfeld
When set to "name", branches are sorted by name, which is the current default. When set to "age", branches are sorted by the age of the repository. This feature was requested by Konstantin Ryabitsev for use on kernel.org. Proposed-by: Konstantin Ryabitsev <mricon@kernel.org>
2013-04-10t0109: chain operations with &&John Keeping
Without '&&' between operations, we will not detect if strace or cgit exit with an error status, which would cause a false positive test status in this case. Signed-off-by: John Keeping <john@keeping.me.uk>
2013-04-10cgit.c: Do not restore unset environment variablesLukas Fleischer
getenv() returns a NULL pointer if the specified variable name cannot be found in the environment. However, some setenv() implementations crash if a NULL pointer is passed as second argument. Only restore variables that are not NULL. See commit d96d2c98ebc4c2d3765f5b35c4142e0e828a421b for a related patch. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
2013-04-09t0107: Use `tar -z` for gzip'ed archivesLukas Fleischer