fixed bug introduced in simplifying patch in previous commit (backward compatibility)

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7828 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2015-01-08 20:11:21 +00:00
parent e2af0cb38b
commit 48e47fabd3

View File

@ -933,6 +933,13 @@ bool SSGxsIdPgp::load(const std::string &input)
idKnown = false;
return true;
}
else if (1 == sscanf(input.c_str(), "K:0 T:%d", &timestamp))
{
lastCheckTs = timestamp;
checkAttempts = 0;
idKnown = false;
return true;
}
else
{
lastCheckTs = 0;