aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/libutil/util.cc15
-rw-r--r--src/libutil/util.hh6
2 files changed, 0 insertions, 21 deletions
diff --git a/src/libutil/util.cc b/src/libutil/util.cc
index 55d3e1d16..c2bceea3d 100644
--- a/src/libutil/util.cc
+++ b/src/libutil/util.cc
@@ -1140,21 +1140,6 @@ std::string toLower(const std::string & s)
}
-string decodeOctalEscaped(const string & s)
-{
- string r;
- for (string::const_iterator i = s.begin(); i != s.end(); ) {
- if (*i != '\\') { r += *i++; continue; }
- unsigned char c = 0;
- ++i;
- while (i != s.end() && *i >= '0' && *i < '8')
- c = c * 8 + (*i++ - '0');
- r += c;
- }
- return r;
-}
-
-
void ignoreException()
{
try {
diff --git a/src/libutil/util.hh b/src/libutil/util.hh
index 35909c8d5..7340ca6c7 100644
--- a/src/libutil/util.hh
+++ b/src/libutil/util.hh
@@ -349,12 +349,6 @@ bool hasSuffix(const string & s, const string & suffix);
std::string toLower(const std::string & s);
-/* Escape a string that contains octal-encoded escape codes such as
- used in /etc/fstab and /proc/mounts (e.g. "foo\040bar" decodes to
- "foo bar"). */
-string decodeOctalEscaped(const string & s);
-
-
/* Exception handling in destructors: print an error message, then
ignore the exception. */
void ignoreException();