summaryrefslogtreecommitdiff
path: root/src/de/blinkt
diff options
context:
space:
mode:
Diffstat (limited to 'src/de/blinkt')
-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;