1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 15:13:14 +02:00

Added m_ssl.cpp which allows Anope to use SSL when connecting to its uplink

This commit is contained in:
Adam
2010-05-07 14:11:21 -04:00
committed by Adam
parent a93be9ff1c
commit 9439cac6b1
8 changed files with 185 additions and 7 deletions
+1 -2
View File
@@ -556,8 +556,7 @@ class DBPlain : public Module
void BackupDatabase()
{
/* Do not backup a database that doesn't exist */
struct stat DBInfo;
if (stat(DatabaseFile.c_str(), &DBInfo))
if (!IsFile(DatabaseFile))
{
return;
}