Skip to content

Commit

Permalink
Bug 1287711 - Use correct APIs, a=bustage
Browse files Browse the repository at this point in the history
  • Loading branch information
martinthomson committed Oct 3, 2017
1 parent 621f10d commit 07d50b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gtests/ssl_gtest/ssl_keylog_unittest.cc
Expand Up @@ -19,10 +19,10 @@ class KeyLogFileTest : public TlsConnectGeneric {
public:
void SetUp() {
TlsConnectTestBase::SetUp();
remove(keylog_file_path);
remove(keylog_file_path.c_str());
std::ostringstream sstr;
sstr << "SSLKEYLOGFILE=" << keylog_file_path;
PR_SetEnv(sstr.c_str());
PR_SetEnv(sstr.str().c_str());
}

void CheckKeyLog() {
Expand Down

0 comments on commit 07d50b5

Please sign in to comment.