Even if the SSL certificate il present, the SSL port is disabled unless -W is specified

This commit is contained in:
Luca 2015-06-23 06:53:11 -07:00
parent 2aafd6d9b3
commit 1930263cf5
2 changed files with 2 additions and 2 deletions

View file

@ -483,7 +483,7 @@ HTTPserver::HTTPserver(u_int16_t _port, const char *_docs_dir, const char *_scri
httpd_v4 = mg_start(&callbacks, NULL, (const char**)http_options);
if(httpd_v4 == NULL) {
ntop->getTrace()->traceEvent(TRACE_ERROR, "Unable to start HTTP server (IPv4) on ports %s %s", ports, strerror(errno));
ntop->getTrace()->traceEvent(TRACE_ERROR, "Unable to start HTTP server (IPv4) on ports %s: %s", ports, strerror(errno));
_exit(-1);
}