fixed default initialization of time_stamps for keys

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6390 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2013-05-31 07:30:05 +00:00
parent df9ff91c3f
commit 58319bc8ff

View File

@ -198,7 +198,7 @@ void PGPHandler::initCertificateInfo(PGPCertificateInfo& cert,const ops_keydata_
cert._validLvl = 1 ; // to be setup accordingly
cert._key_index = index ;
cert._flags = 0 ;
cert._time_stamp = time(NULL) ;
cert._time_stamp = 0 ;// "never" by default. Will be updated by trust database, and effective key usage.
switch(keydata->key.pkey.algorithm)
{