Browse Source

Fixed typos (thx zzz)

pull/242/head
EinMByte 9 years ago
parent
commit
8434863beb
  1. 6
      i2pcontrol/I2PControl.cpp
  2. 2
      i2pcontrol/I2PControl.h

6
i2pcontrol/I2PControl.cpp

@ -60,8 +60,8 @@ std::string I2PControlSession::Response::getErrorMsg() const @@ -60,8 +60,8 @@ std::string I2PControlSession::Response::getErrorMsg() const
return "Invalid password.";
case ErrorCode::NoToken:
return "No authentication token given.";
case ErrorCode::NonexistantToken:
return "Nonexistant authentication token given.";
case ErrorCode::NonexistentToken:
return "Nonexistent authentication token given.";
case ErrorCode::ExpiredToken:
return "Exipred authentication token given.";
case ErrorCode::UnspecifiedVersion:
@ -182,7 +182,7 @@ bool I2PControlSession::authenticate(const PropertyTree& pt, Response& response) @@ -182,7 +182,7 @@ bool I2PControlSession::authenticate(const PropertyTree& pt, Response& response)
std::lock_guard<std::mutex> lock(tokensMutex);
auto it = tokens.find(token);
if(it == tokens.end()) {
response.setError(ErrorCode::NonexistantToken);
response.setError(ErrorCode::NonexistentToken);
return false;
} else if(util::GetSecondsSinceEpoch() - it->second > I2P_CONTROL_TOKEN_LIFETIME) {
response.setError(ErrorCode::ExpiredToken);

2
i2pcontrol/I2PControl.h

@ -76,7 +76,7 @@ public: @@ -76,7 +76,7 @@ public:
// I2PControl specific
InvalidPassword = 32001,
NoToken = 32002,
NonexistantToken = 32003,
NonexistentToken = 32003,
ExpiredToken = 32004,
UnspecifiedVersion = 32005,
UnsupportedVersion = 32006

Loading…
Cancel
Save