diff options
| author | Markus Wick <markus@selfnet.de> | 2015-08-09 11:08:54 +0200 |
|---|---|---|
| committer | Markus Wick <markus@selfnet.de> | 2015-08-09 11:08:54 +0200 |
| commit | 68a54daec37291f2ca7614444e3239ffa591dece (patch) | |
| tree | 6a3af0b73077358e104078a0d764b1dded074067 /Source/Core | |
| parent | f135e54ba0ee65b8791acad7ef1a40240cf62877 (diff) | |
| parent | e20db1b2e3d7d59a55897c4bbbebd5981875c8f8 (diff) | |
Merge pull request #2817 from comex/clientca-typo
Forgot to add a slash in one bit of code I switched from D_WIIUSER_IDX to D_SESSION_WIIROOT_IDX.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/IPC_HLE/WII_IPC_HLE_Device_net_ssl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Core/IPC_HLE/WII_IPC_HLE_Device_net_ssl.cpp b/Source/Core/Core/IPC_HLE/WII_IPC_HLE_Device_net_ssl.cpp index 03c50a97ce..8f40b9a5d9 100644 --- a/Source/Core/Core/IPC_HLE/WII_IPC_HLE_Device_net_ssl.cpp +++ b/Source/Core/Core/IPC_HLE/WII_IPC_HLE_Device_net_ssl.cpp @@ -288,8 +288,8 @@ _SSL_NEW_ERROR: { WII_SSL* ssl = &_SSL[sslID]; std::string cert_base_path = File::GetUserPath(D_SESSION_WIIROOT_IDX); - int ret = x509_crt_parse_file(&ssl->clicert, (cert_base_path + "clientca.pem").c_str()); - int pk_ret = pk_parse_keyfile(&ssl->pk, (cert_base_path + "clientcakey.pem").c_str(), nullptr); + int ret = x509_crt_parse_file(&ssl->clicert, (cert_base_path + "/clientca.pem").c_str()); + int pk_ret = pk_parse_keyfile(&ssl->pk, (cert_base_path + "/clientcakey.pem").c_str(), nullptr); if (ret || pk_ret) { x509_crt_free(&ssl->clicert); |
