default name for finished downloads directory was changed from Downloads to Incoming

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1362 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
alexandrut 2009-07-12 16:11:09 +00:00
parent 894486c48e
commit 17374bf299

View File

@ -32,7 +32,7 @@
#include "ft/ftcontroller.h" #include "ft/ftcontroller.h"
#include "rsiface/rsturtle.h" #include "rsiface/rsturtle.h"
/* global variable now points straight to /* global variable now points straight to
* ft/ code so variable defined here. * ft/ code so variable defined here.
*/ */
@ -664,7 +664,7 @@ int RsServer::StartupRetroShare()
} }
certConfigFile += configConfFile; certConfigFile += configConfFile;
certNeighDir += configCertDir; certNeighDir += configCertDir;
emergencySaveDir += "Downloads"; emergencySaveDir += "Incoming";
emergencyPartialsDir += "Partials"; emergencyPartialsDir += "Partials";
/* if we've loaded an old format file! */ /* if we've loaded an old format file! */
@ -692,7 +692,7 @@ int RsServer::StartupRetroShare()
/****** New Ft Server **** !!! */ /****** New Ft Server **** !!! */
ftserver = new ftServer(mAuthMgr, mConnMgr); ftserver = new ftServer(mAuthMgr, mConnMgr);
ftserver->setP3Interface(pqih); ftserver->setP3Interface(pqih);
ftserver->setConfigDirectory(RsInit::basedir); ftserver->setConfigDirectory(RsInit::basedir);
ftserver->SetupFtServer(&(getNotify())); ftserver->SetupFtServer(&(getNotify()));
@ -865,7 +865,7 @@ int RsServer::StartupRetroShare()
/* clean sockaddr before setting values (MaxOSX) */ /* clean sockaddr before setting values (MaxOSX) */
sockaddr_clear(&laddr); sockaddr_clear(&laddr);
laddr.sin_family = AF_INET; laddr.sin_family = AF_INET;
laddr.sin_port = htons(RsInit::port); laddr.sin_port = htons(RsInit::port);
@ -1223,11 +1223,11 @@ bool RsInit::RsGenerateCertificate(
gen_ok = false; gen_ok = false;
} }
X509 *cert = NULL; X509 *cert = NULL;
if (gen_ok) if (gen_ok)
{ {
cert = SignX509Certificate(X509_REQ_get_subject_name(req), cert = SignX509Certificate(X509_REQ_get_subject_name(req),
privkey,req,days); privkey,req,days);
/* Print the signed Certificate! */ /* Print the signed Certificate! */
@ -1269,7 +1269,7 @@ bool RsInit::RsGenerateCertificate(
} }
if (cert) if (cert)
{ {
gen_ok = true; gen_ok = true;
} }
@ -1307,7 +1307,7 @@ bool RsInit::RsGenerateCertificate(
/* save to file */ /* save to file */
if (x509) if (x509)
{ {
gen_ok = true; gen_ok = true;
/* Print the signed Certificate! */ /* Print the signed Certificate! */
@ -1341,14 +1341,14 @@ bool RsInit::RsGenerateCertificate(
fprintf(stderr," : %s\n", cert_name.c_str()); fprintf(stderr," : %s\n", cert_name.c_str());
gen_ok = false; gen_ok = false;
} }
if (!PEM_write_X509(out,x509)) if (!PEM_write_X509(out,x509))
{ {
fprintf(stderr,"RsGenerateCert() Couldn't Save Cert"); fprintf(stderr,"RsGenerateCert() Couldn't Save Cert");
fprintf(stderr," : %s\n", cert_name.c_str()); fprintf(stderr," : %s\n", cert_name.c_str());
gen_ok = false; gen_ok = false;
} }
fclose(out); fclose(out);
X509_free(x509); X509_free(x509);
} }