X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fwebserver.c;fp=webcit%2Fwebserver.c;h=e0e6e403bb4389eb750cd211973934d6d50a025e;hb=826a38d67f663f93844309e91778f036903dcce4;hp=0ea5e3fe896b54e1902520e967e00836cfa505f3;hpb=dbee11a35d5d217f356279fa400d7f9deab86cb0;p=citadel.git diff --git a/webcit/webserver.c b/webcit/webserver.c index 0ea5e3fe8..e0e6e403b 100644 --- a/webcit/webserver.c +++ b/webcit/webserver.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 1996-2016 by the citadel.org team + * Copyright (c) 1996-2017 by the citadel.org team * * This program is open source software. You can redistribute it and/or * modify it under the terms of the GNU General Public License version 3. @@ -234,7 +234,7 @@ int main(int argc, char **argv) /* Tell 'em who's in da house */ syslog(LOG_NOTICE, "%s", PACKAGE_STRING); - syslog(LOG_NOTICE, "Copyright (C) 1996-2016 by the citadel.org team"); + syslog(LOG_NOTICE, "Copyright (C) 1996-2017 by the citadel.org team"); syslog(LOG_NOTICE, " "); syslog(LOG_NOTICE, "This program is open source software: you can redistribute it and/or"); syslog(LOG_NOTICE, "modify it under the terms of the GNU General Public License, version 3."); @@ -283,7 +283,7 @@ int main(int argc, char **argv) * wcsession struct to which the thread is currently bound. */ if (pthread_key_create(&MyConKey, NULL) != 0) { - syslog(LOG_EMERG, "Can't create TSD key: %s", strerror(errno)); + syslog(LOG_ERR, "Can't create TSD key: %s", strerror(errno)); } InitialiseSemaphores(); @@ -295,7 +295,7 @@ int main(int argc, char **argv) */ #ifdef HAVE_OPENSSL if (pthread_key_create(&ThreadSSL, NULL) != 0) { - syslog(LOG_EMERG, "Can't create TSD key: %s", strerror(errno)); + syslog(LOG_ERR, "Can't create TSD key: %s", strerror(errno)); } #endif