diff options
author | Arne Schwabe <arne@rfc2549.org> | 2013-06-16 22:53:40 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2013-06-16 22:53:40 +0200 |
commit | 71a288f56eb45be299782cd630b401e32118b8b6 (patch) | |
tree | fe6ac02c4fed15a82c0ffc3557c5e42b72e57c59 /src/de/blinkt/openvpn | |
parent | 1b98611dd83169bc754fa96a12962552de9896e3 (diff) |
I have no idea what I am doing here …..
Diffstat (limited to 'src/de/blinkt/openvpn')
-rw-r--r-- | src/de/blinkt/openvpn/core/X509Utils.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/de/blinkt/openvpn/core/X509Utils.java b/src/de/blinkt/openvpn/core/X509Utils.java index d07fcaee..48434b22 100644 --- a/src/de/blinkt/openvpn/core/X509Utils.java +++ b/src/de/blinkt/openvpn/core/X509Utils.java @@ -92,7 +92,7 @@ public class X509Utils { char c = (char) Integer.parseInt(hexstr,16); if (isPrintableChar(c)) { d+=c; - } else if (i==1 && c==0x12) { + } else if (i==1 && (c==0x12 || c==0x1b)) { ; // ignore } else { d += "\\x" + hexstr; |