Skip to content

Commit

Permalink
Version 1.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
grosjo committed Mar 4, 2024
1 parent e771013 commit 653a49e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SUBDIRS = src

PACKAGE_VERSION = "1.7.4"
VERSION = "1.7.4"
PACKAGE_VERSION = "1.7.5"
VERSION = "1.7.5"

ACLOCAL_AMFLAGS = -I m4
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([Dovecot FTS Xapian],[1.7.4],[[email protected]],[dovecot-fts-xapian])
AC_INIT([Dovecot FTS Xapian],[1.7.5],[[email protected]],[dovecot-fts-xapian])
AC_CONFIG_AUX_DIR([.])
AC_CONFIG_SRCDIR([src])
AC_CONFIG_MACRO_DIR([m4])
Expand Down
2 changes: 1 addition & 1 deletion fts-xapian-config.h.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#define FTS_XAPIAN_NAME "Dovecot FTS Xapian"
#define FTS_XAPIAN_VERSION "1.7.4"
#define FTS_XAPIAN_VERSION "1.7.5"
4 changes: 2 additions & 2 deletions src/fts-backend-xapian-functions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,7 @@ class XDocsWriter
if(err)
{
pos=16;
syslog(LOG_ERR,"%s Retrying (%s)",title,dbpath);
syslog(LOG_ERR,"%s Retrying (%s) from %s",title,dbpath,err_s.c_str());
try
{
if((*dbw)!=NULL)
Expand Down Expand Up @@ -1108,7 +1108,7 @@ static void fts_backend_xapian_close_db(Xapian::WritableDatabase * dbw,char * db

std::string iamglass(dbpath);
iamglass.append("/iamglass");
if(verbose>1) syslog(LOG_INFO,"FTS Xapian : Chown %s to (%ld,%ld)",iamglass.c_str(),(long)user,(long)group);
if(verbose>0) syslog(LOG_INFO,"FTS Xapian : Chown %s to (%ld,%ld)",iamglass.c_str(),(long)user,(long)group);
if(chown(iamglass.c_str(),user,group)<0) { syslog(LOG_ERR,"Can not chown %s",iamglass.c_str()); }

if(verbose>0) syslog(LOG_INFO,"FTS Xapian : DB (%s) %s closed in %ld ms",boxname,dbpath,fts_backend_xapian_current_time()-t);
Expand Down

0 comments on commit 653a49e

Please sign in to comment.