summaryrefslogtreecommitdiff
path: root/perl
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-12-23 01:14:01 (GMT)
committerEric Wong <e@80x24.org>2016-12-23 01:37:36 (GMT)
commit22af6fef9b6538c9e87e147a920be9509acf1ddd (patch)
tree390a2cac55ec3221aeba9c5fecbc00be31275e81 /perl
parenta274e0a036ea886a31f8b216564ab1b4a3142f6c (diff)
downloadgit-22af6fef9b6538c9e87e147a920be9509acf1ddd.zip
git-22af6fef9b6538c9e87e147a920be9509acf1ddd.tar.gz
git-22af6fef9b6538c9e87e147a920be9509acf1ddd.tar.bz2
git-svn: escape backslashes in refnames
This brings git-svn refname escaping up-to-date with commit a4c2e69936df8dd0b071b85664c6cc6a4870dd84 ("Disallow '\' in ref names") from May 2009. Reported-by: Michael Fladischer <michael@fladi.at> Message-ID: <cb8cd9b1-9882-64d2-435d-40d0b2b82d59@fladi.at> Signed-off-by: Eric Wong <e@80x24.org>
Diffstat (limited to 'perl')
-rw-r--r--perl/Git/SVN.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/Git/SVN.pm b/perl/Git/SVN.pm
index 711d268..98518f4 100644
--- a/perl/Git/SVN.pm
+++ b/perl/Git/SVN.pm
@@ -490,7 +490,7 @@ sub refname {
#
# Additionally, % must be escaped because it is used for escaping
# and we want our escaped refname to be reversible
- $refname =~ s{([ \%~\^:\?\*\[\t])}{sprintf('%%%02X',ord($1))}eg;
+ $refname =~ s{([ \%~\^:\?\*\[\t\\])}{sprintf('%%%02X',ord($1))}eg;
# no slash-separated component can begin with a dot .
# /.* becomes /%2E*