dont make local variables global

This commit is contained in:
webzwo0i 2014-12-14 22:01:28 +01:00
parent 1932d240e5
commit 5d15f655f0
11 changed files with 14 additions and 14 deletions

View file

@ -56,7 +56,7 @@ exports.restartServer = function () {
console.log( "SSL -- server key file: " + settings.ssl.key );
console.log( "SSL -- Certificate Authority's certificate file: " + settings.ssl.cert );
options = {
var options = {
key: fs.readFileSync( settings.ssl.key ),
cert: fs.readFileSync( settings.ssl.cert )
};