From 76e6a3f56de53fe4f8b0cfad9be376ffa3de5329 Mon Sep 17 00:00:00 2001 From: "A.J. Beamon" Date: Fri, 22 Mar 2019 11:02:38 -0700 Subject: [PATCH] Update fdbclient/BackupAgentBase.actor.cpp Co-Authored-By: satherton --- fdbclient/BackupAgentBase.actor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdbclient/BackupAgentBase.actor.cpp b/fdbclient/BackupAgentBase.actor.cpp index 8a885ecc5c..62290fec59 100644 --- a/fdbclient/BackupAgentBase.actor.cpp +++ b/fdbclient/BackupAgentBase.actor.cpp @@ -42,7 +42,7 @@ int64_t BackupAgentBase::parseTime(std::string timestamp) { // TODO: Use std::get_time implementation for all platforms once supported // It would be nice to read the timezone using %z, but it seems not all get_time() // or strptime() implementations handle it correctly in all environments so we - // will read the date and time independing of timezone at first and then adjust it. + // will read the date and time independent of timezone at first and then adjust it. #ifdef _WIN32 std::istringstream s(timeOnly); s.imbue(std::locale(setlocale(LC_TIME, nullptr)));