Просмотр исходного кода

Unneeded addition

Source commit: 0c1d3095597339e66cff40ecd05e717e0f6a2757
Martin Prikryl 1 год назад
Родитель
Сommit
f60ee8ae79
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      source/core/SessionData.cpp

+ 1 - 1
source/core/SessionData.cpp

@@ -1637,7 +1637,7 @@ static UnicodeString ConvertPathFromOpenssh(const UnicodeString & Path)
   // (e.g. when converting keys) work suboptimally when working with forward slashes.
   UnicodeString Result = GetNormalizedPath(Path);
   const UnicodeString HomePathPrefix = L"~";
-  if (StartsStr(HomePathPrefix, Result + L"\\"))
+  if (StartsStr(HomePathPrefix, Result))
   {
     Result =
       GetShellFolderPath(CSIDL_PROFILE) +