From 4b104bf1296e58ea5cad097401297bd8ca08d205 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Fri, 15 Apr 2016 17:42:54 -0400 Subject: [PATCH] Begin removing the decimal point from our version number (901 instead of 9.01) --- webcit/configure.ac | 2 +- webcit/webserver.c | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/webcit/configure.ac b/webcit/configure.ac index 6f74bdcba..a523add56 100644 --- a/webcit/configure.ac +++ b/webcit/configure.ac @@ -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) diff --git a/webcit/webserver.c b/webcit/webserver.c index 116c6475d..9d838ef0c 100644 --- a/webcit/webserver.c +++ b/webcit/webserver.c @@ -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); } -- 2.30.2