diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2011-07-26 11:52:42 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2011-07-26 11:52:42 +0200 |
commit | cca2efe60edfae106380a55ee4fb561aa570f2c9 (patch) | |
tree | cc5f8570b581882d80b3d9b44f55fd6ecb327857 /apt-pkg/contrib/strutl.cc | |
parent | b9dc47069ab90a79ca3b9eae3cc85d38062d57ee (diff) |
fix typos in changelog, make DeEscapeString const, improve description
Diffstat (limited to 'apt-pkg/contrib/strutl.cc')
-rw-r--r-- | apt-pkg/contrib/strutl.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apt-pkg/contrib/strutl.cc b/apt-pkg/contrib/strutl.cc index e998d74dc..ab2da2d9a 100644 --- a/apt-pkg/contrib/strutl.cc +++ b/apt-pkg/contrib/strutl.cc @@ -1240,10 +1240,10 @@ bool CheckDomainList(const string &Host,const string &List) return false; } /*}}}*/ -// ProcessEscapeSequences /*{{{*/ +// DeEscapeString - unescape (\0XX and \xXX) from a string /*{{{*/ // --------------------------------------------------------------------- -/* unescape (\0XX and \xXX) from a string */ -string DeEscapeString(string &input) +/* */ +string DeEscapeString(const string &input) { char tmp[3]; string::const_iterator it, escape_start; |