Renamed file to known_hosts2.

This commit is contained in:
Armin Novak 2015-06-12 09:30:01 +02:00
parent 9dd9c35cee
commit b43c9f9060
2 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@
static const char certificate_store_dir[] = "certs";
static const char certificate_server_dir[] = "server";
static const char certificate_known_hosts_file[] = "known_hosts.v2";
static const char certificate_known_hosts_file[] = "known_hosts2";
static const char certificate_legacy_hosts_file[] = "known_hosts";
#include <freerdp/log.h>

View File

@ -108,14 +108,14 @@ int TestKnownHosts(int argc, char* argv[])
}
}
currentFileV2 = GetCombinedPath(current.ConfigPath, "known_hosts.v2");
currentFileV2 = GetCombinedPath(current.ConfigPath, "known_hosts2");
if (!currentFileV2)
{
fprintf(stderr, "Could not get file path!\n");
goto finish;
}
legacyFileV2 = GetCombinedPath(legacy.ConfigPath, "known_hosts.v2");
legacyFileV2 = GetCombinedPath(legacy.ConfigPath, "known_hosts2");
if (!legacyFileV2)
{
fprintf(stderr, "Could not get file path!\n");