summaryrefslogtreecommitdiff
path: root/doc/patchqueue
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-06-11 22:02:28 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-06-11 22:02:28 +0000
commita14746a26c336f9922707b2b6a85a1c3d2233c0d (patch)
tree2dd39e981179ebc83a88fcff77ad7c2eca2b55b1 /doc/patchqueue
parentf8995795a99aae80faec706cc76d2cf6622cf8f2 (diff)
aready done....
Diffstat (limited to 'doc/patchqueue')
-rw-r--r--doc/patchqueue/Wrapper_config_with_multiline_regexp.mdwn5
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/patchqueue/Wrapper_config_with_multiline_regexp.mdwn b/doc/patchqueue/Wrapper_config_with_multiline_regexp.mdwn
index d62cbc633..b3c6d8e51 100644
--- a/doc/patchqueue/Wrapper_config_with_multiline_regexp.mdwn
+++ b/doc/patchqueue/Wrapper_config_with_multiline_regexp.mdwn
@@ -1,5 +1,8 @@
Turning the wikilink regexp into an extended regexp on the svn trunk seems to have broken the setuid wrapper on my system, because of two reasons: First, the wrapper generator should turn each newline in $configstring into `\n` in the C code rather than `\` followed by a newline in the C code. Second, the untainting of $configstring should allow newlines.
+> Both of these problems were already dealt with in commit r3714, on June
+> 3rd. Confused why you're posting patches for them now. --[[Joey]]
+
Modified: wiki-meta/perl/IkiWiki.pm
==============================================================================
--- wiki-meta/perl/IkiWiki.pm (original)
@@ -26,4 +29,4 @@ Turning the wikilink regexp into an extended regexp on the svn trunk seems to ha
+ $configstring=~s/\n/\\n/g;
#translators: The first parameter is a filename, and the second is
- #translators: a (probably not translated) error message. \ No newline at end of file
+ #translators: a (probably not translated) error message.