X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=webcit%2Ftests%2Ftest_main.c;fp=webcit%2Ftests%2Ftest_main.c;h=1316da3f6c857faeaa0f155ca3e6b09d53071096;hp=267d0db876e1a8cd84a248c05ee489de657212aa;hb=cdb873062246d255bb3813d4443bcaa0992e03ff;hpb=d1dcc57fd3286c9e38b7f15eb2fb047279232628 diff --git a/webcit/tests/test_main.c b/webcit/tests/test_main.c index 267d0db87..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-2012 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); }