From 655bca08d85db23f6df082603713b5885cef2634 Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Thu, 1 Aug 2019 20:21:37 +0700 Subject: PCL fixes --- crypto/src/asn1/x500/style/IetfUtilities.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crypto/src/asn1') diff --git a/crypto/src/asn1/x500/style/IetfUtilities.cs b/crypto/src/asn1/x500/style/IetfUtilities.cs index e3236aaec..2c0ab45bc 100644 --- a/crypto/src/asn1/x500/style/IetfUtilities.cs +++ b/crypto/src/asn1/x500/style/IetfUtilities.cs @@ -33,7 +33,7 @@ namespace Org.BouncyCastle.Asn1.X500.Style } catch (IOException e) { - throw new ArgumentException("Other value has no encoded form", "value", e); + throw new ArgumentException("Other value has no encoded form", e); } } @@ -85,7 +85,7 @@ namespace Org.BouncyCastle.Asn1.X500.Style while (endBuf >= 0 && vBuf[endBuf] == ' ') { - vBuf.Insert(endBuf, '\\'); + vBuf.Insert(endBuf, "\\"); endBuf--; } -- cgit 1.4.1