summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2013-06-16 22:53:40 +0200
committerArne Schwabe <arne@rfc2549.org>2013-06-16 22:53:40 +0200
commit71a288f56eb45be299782cd630b401e32118b8b6 (patch)
treefe6ac02c4fed15a82c0ffc3557c5e42b72e57c59
parent1b98611dd83169bc754fa96a12962552de9896e3 (diff)
I have no idea what I am doing here …..
-rw-r--r--src/de/blinkt/openvpn/core/X509Utils.java2
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;