summaryrefslogtreecommitdiff
path: root/devel/avro-cpp/files/patch-impl_json_JsonIO.hh
blob: ee3df3f4b6ae809856f41c264bff7c8eb3e10b24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- impl/json/JsonIO.hh.orig	2015-12-02 18:53:55 UTC
+++ impl/json/JsonIO.hh
@@ -159,7 +159,7 @@ class AVRO_DECL JsonGenerator {
 
     void escapeCtl(char c) {
         out_.write('\\');
-        out_.write('U');
+        out_.write('u'); // https://issues.apache.org/jira/browse/AVRO-1191
         out_.write('0');
         out_.write('0');
         out_.write(toHex((static_cast<unsigned char>(c)) / 16));