From: Art Cancro Date: Sun, 17 Feb 2008 05:26:53 +0000 (+0000) Subject: Removed a temporary hack to vlprintf() that displayed the X-Git-Tag: v7.86~2476 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=b4a3cc69841bca455fc7a80548e99831268d4ff8;p=citadel.git Removed a temporary hack to vlprintf() that displayed the address of the currently bound CitContext. Updated the internal version number to 7.32 because we are going to have to push an emergency update. --- diff --git a/citadel/citadel.h b/citadel/citadel.h index 3ea8b0063..9d380de42 100644 --- a/citadel/citadel.h +++ b/citadel/citadel.h @@ -47,7 +47,7 @@ extern "C" { * usually more strict because you're not really supposed to dump/load and * upgrade at the same time. */ -#define REV_LEVEL 730 /* This version */ +#define REV_LEVEL 732 /* This version */ #define REV_MIN 591 /* Oldest compatible database */ #define EXPORT_REV_MIN 725 /* Oldest compatible export files */ #define LIBCITADEL_MIN 105 /* Minimum required version of libcitadel */ diff --git a/citadel/configure.ac b/citadel/configure.ac index f64895f05..0dd016031 100644 --- a/citadel/configure.ac +++ b/citadel/configure.ac @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. dnl $Id$ AC_PREREQ(2.52) -AC_INIT([Citadel], [7.31], [http://www.citadel.org/]) +AC_INIT([Citadel], [7.32], [http://www.citadel.org/]) AC_REVISION([$Revision: 5108 $]) AC_CONFIG_SRCDIR([citserver.c]) AC_PREFIX_DEFAULT(/usr/local/citadel) diff --git a/citadel/sysdep.c b/citadel/sysdep.c index c55c0ca69..164cafd5a 100644 --- a/citadel/sysdep.c +++ b/citadel/sysdep.c @@ -141,7 +141,6 @@ void vlprintf(enum LogLevel loglevel, const char *format, va_list arg_ptr) /* Promote to time_t; types differ on some OSes (like darwin) */ unixtime = tv.tv_sec; localtime_r(&unixtime, &tim); -/* if (CC->cs_pid != 0) { sprintf(buf, "%04d/%02d/%02d %2d:%02d:%02d.%06ld [%3d] ", @@ -156,11 +155,6 @@ void vlprintf(enum LogLevel loglevel, const char *format, va_list arg_ptr) tim.tm_mday, tim.tm_hour, tim.tm_min, tim.tm_sec, (long)tv.tv_usec); } -FIXME temp i want to see CC */ - sprintf(buf, - "%2d:%02d:%02d.%06ld 0x%08lx ", - tim.tm_hour, tim.tm_min, - tim.tm_sec, (long)tv.tv_usec, CC); vsnprintf(buf2, SIZ, format, arg_ptr); fprintf(stderr, "%s%s", buf, buf2);