Begin removing the decimal point from our version number (901 instead of 9.01)
authorArt Cancro <ajc@citadel.org>
Fri, 15 Apr 2016 21:42:54 +0000 (17:42 -0400)
committerArt Cancro <ajc@citadel.org>
Fri, 15 Apr 2016 21:42:54 +0000 (17:42 -0400)
webcit/configure.ac
webcit/webserver.c

index 6f74bdcbad149b1ba5660e5c0904731cb0a31859..a523add563980529a3ba429c074aaf3e4a15392b 100644 (file)
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 dnl $Id$
-AC_INIT([WebCit], [9.01], [http://www.citadel.org/])
+AC_INIT([WebCit], [901], [http://www.citadel.org/])
 
 
 AC_SUBST(PROG_SUBDIRS)
index 116c6475dcf8d00e0ce00f0cf6350fe8eef416b7..9d838ef0c11d811d46c57403d60a9c75da2a2fe7 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1996-2015 by the citadel.org team
+ * Copyright (c) 1996-2016 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.
@@ -90,10 +90,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);
        }