summaryrefslogtreecommitdiff
path: root/tntconfig.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tntconfig.cpp')
-rw-r--r--tntconfig.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tntconfig.cpp b/tntconfig.cpp
index 1ca52ec..f047399 100644
--- a/tntconfig.cpp
+++ b/tntconfig.cpp
@@ -25,7 +25,7 @@ void TntConfig::WriteConfig()
ostringstream builder;
builder << Plugin::GetConfigDirectory() << "/httpd.config";
m_configPath = builder.str();
-
+
ofstream file( m_configPath.c_str(), ios::out | ios::trunc );
if ( !file ) {
ostringstream builder;
@@ -51,7 +51,7 @@ void TntConfig::WriteProperties()
ostringstream builder;
builder << Plugin::GetConfigDirectory() << "/httpd.properties";
m_propertiesPath = builder.str();
-
+
ofstream file( m_propertiesPath.c_str(), ios::out | ios::trunc );
if ( !file ) {
ostringstream builder;