X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Ftests%2Ftest_main.c;h=1316da3f6c857faeaa0f155ca3e6b09d53071096;hb=cdb873062246d255bb3813d4443bcaa0992e03ff;hp=6d4eabceb31db4dc7cdbd982a3fedc9321a053f9;hpb=56d69e5d8434e98835a2582c59b771ba69475431;p=citadel.git diff --git a/webcit/tests/test_main.c b/webcit/tests/test_main.c index 6d4eabceb..1316da3f6 100644 --- a/webcit/tests/test_main.c +++ b/webcit/tests/test_main.c @@ -3,7 +3,7 @@ * waiting on the specified port for incoming HTTP connections. When a * connection is established, it calls context_loop() from context_loop.c. * - * Copyright (c) 1996-2010 by the citadel.org developers. + * Copyright (c) 1996-2016 by the citadel.org developers. * This program is released under the terms of the GNU General Public License v3. */ @@ -86,10 +86,8 @@ int main(int argc, char **argv) /* Ensure that we are linked to the correct version of libcitadel */ if (libcitadel_version_number() < LIBCITADEL_VERSION_NUMBER) { - fprintf(stderr, " You are running libcitadel version %d.%02d\n", - (libcitadel_version_number() / 100), (libcitadel_version_number() % 100)); - fprintf(stderr, "WebCit was compiled against version %d.%02d\n", - (LIBCITADEL_VERSION_NUMBER / 100), (LIBCITADEL_VERSION_NUMBER % 100)); + fprintf(stderr, " You are running libcitadel version %d\n", (libcitadel_version_number())); + fprintf(stderr, "WebCit was compiled against version %d\n", LIBCITADEL_VERSION_NUMBER); return(1); } @@ -160,7 +158,7 @@ int main(int argc, char **argv) if (gethostname (&server_cookie[strlen(server_cookie)], 200) != 0) { - lprintf(2, "gethostname: %s\n", + syslog(2, "gethostname: %s\n", strerror(errno)); free(server_cookie); } @@ -191,8 +189,8 @@ int main(int argc, char **argv) LoadIconDir(static_icon_dir); /* Tell 'em who's in da house */ - lprintf(1, PACKAGE_STRING "\n"); - lprintf(1, "Copyright (C) 1996-2009 by the Citadel development team.\n" + syslog(1, PACKAGE_STRING "\n"); + syslog(1, "Copyright (C) 1996-2009 by the Citadel development team.\n" "This software is distributed under the terms of the " "GNU General Public License.\n\n" ); @@ -215,7 +213,7 @@ int main(int argc, char **argv) * wcsession struct to which the thread is currently bound. */ if (pthread_key_create(&MyConKey, NULL) != 0) { - lprintf(1, "Can't create TSD key: %s\n", strerror(errno)); + syslog(1, "Can't create TSD key: %s\n", strerror(errno)); } InitialiseSemaphores ();