From 6a552a03d0ba440a8cdf43b93d9e1980702a400a Mon Sep 17 00:00:00 2001 From: Syrone Wong Date: Thu, 11 Aug 2016 10:06:58 +0800 Subject: [PATCH] Fix typo Signed-off-by: Syrone Wong --- shadowsocks-csharp/Controller/System/SystemProxy.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shadowsocks-csharp/Controller/System/SystemProxy.cs b/shadowsocks-csharp/Controller/System/SystemProxy.cs index e3054f3d..74393986 100644 --- a/shadowsocks-csharp/Controller/System/SystemProxy.cs +++ b/shadowsocks-csharp/Controller/System/SystemProxy.cs @@ -97,7 +97,7 @@ namespace Shadowsocks.Controller try { registry = Utils.OpenUserRegKey( @"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections", true ); if ( registry == null ) { - Logging.Error( @"Cannot find HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" ); + Logging.Error( @"Cannot find HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections" ); return; } var defaultValue = registry.GetValue( "DefaultConnectionSettings" ); @@ -136,7 +136,7 @@ namespace Shadowsocks.Controller try { registry = Utils.OpenUserRegKey( @"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections", true ); if ( registry == null ) { - Logging.Error( @"Cannot find HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" ); + Logging.Error( @"Cannot find HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections" ); return; } var defConnection = ( byte[] ) registry.GetValue( "DefaultConnectionSettings" );