diff options
author | Jonas Schnelli <jonas.schnelli@include7.ch> | 2015-06-24 22:31:10 +0200 |
---|---|---|
committer | Jonas Schnelli <jonas.schnelli@include7.ch> | 2015-06-25 08:10:08 +0200 |
commit | 77aeb7c964b66075aeddeb6542b53bdc0f96538c (patch) | |
tree | 5ce7053cc75fd9ebd7fcd83aa7d6d0371667b97c /src/univalue/gen.cpp | |
parent | 91389e51c78ae3565b037e31dd5382b52bd75136 (diff) |
UniValue: don't escape solidus, keep espacing of reverse solidus
Diffstat (limited to 'src/univalue/gen.cpp')
-rw-r--r-- | src/univalue/gen.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/univalue/gen.cpp b/src/univalue/gen.cpp index abebe88634..5e5a4d4aed 100644 --- a/src/univalue/gen.cpp +++ b/src/univalue/gen.cpp @@ -22,7 +22,6 @@ static void initJsonEscape() { escapes[(int)'"'] = "\\\""; escapes[(int)'\\'] = "\\\\"; - escapes[(int)'/'] = "\\/"; escapes[(int)'\b'] = "\\b"; escapes[(int)'\f'] = "\\f"; escapes[(int)'\n'] = "\\n"; |