code cleaning

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1732 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
joss17 2009-10-27 20:46:17 +00:00
parent 96fd660065
commit af3e43ce4e

View File

@ -46,23 +46,14 @@
// for blocking signals
#include <signal.h>
/**************** PQI_USE_XPGP ******************/
#if defined(PQI_USE_XPGP)
#include "pqi/authxpgp.h"
#else /* X509 Certificates */
/**************** PQI_USE_XPGP ******************/
/**************** PQI_USE_SSLONLY ***************/
#if defined(PQI_USE_SSLONLY)
#if defined(PQI_USE_SSLONLY)
#include "pqi/authssl.h"
#else /* X509 Certificates */
/**************** PQI_USE_SSLONLY ***************/
/**************** SSL + OPENPGP *****************/
#else /* X509 Certificates */
/**************** PQI_USE_SSLONLY ***************/
/**************** SSL + OPENPGP *****************/
#include "pqi/authgpg.h"
#include "pqi/authssl.h"
#endif /* X509 Certificates */
/**************** SSL + OPENPGP *****************/
#endif /* X509 Certificates */
/**************** PQI_USE_XPGP ******************/
class accountId
{
@ -740,15 +731,13 @@ static bool checkAccount(std::string accountdir, accountId &id)
std::cerr << "checkAccount() dir: " << accountdir << std::endl;
/**************** PQI_USE_XPGP ******************/
/* check against authmanagers private keys */
bool ret = LoadCheckX509andGetName(cert_name.c_str(), id.sslName, id.sslId);
bool ret = false;
/* check against authmanagers private keys */
LoadCheckX509andGetName(cert_name.c_str(), id.sslName, id.sslId);
std::cerr << "sslName: " << id.sslName << " id: " << id.sslId << std::endl;
#ifdef PQI_USE_SSLONLY
#else // PGP+SSL
std::string pgpid;
#ifndef PQI_USE_SSLONLY
std::string tmpid;
if (LoadCheckX509andGetIssuerName(cert_name.c_str(), id.pgpId, tmpid))
{