From 7a31cf64bcbc1d66d7ecf8e5936d22a639184f42 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Thu, 23 Jul 2009 14:38:34 +0000 Subject: [PATCH] Fix int/int32_t problem in accurate_add_file git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@9093 91ce42f0-d328-0410-95d8-f526ca767f89 --- bacula/src/filed/accurate.c | 2 +- bacula/technotes | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/bacula/src/filed/accurate.c b/bacula/src/filed/accurate.c index df39a60689..4d050b5df0 100644 --- a/bacula/src/filed/accurate.c +++ b/bacula/src/filed/accurate.c @@ -146,7 +146,7 @@ static bool accurate_add_file(JCR *jcr, char *fname, char *lstat) bool ret = true; CurFile elt; struct stat statp; - int LinkFIc; + int32_t LinkFIc; decode_stat(lstat, &statp, &LinkFIc); /* decode catalog stat */ elt.ctime = statp.st_ctime; elt.mtime = statp.st_mtime; diff --git a/bacula/technotes b/bacula/technotes index ff1e01f2b6..e10b91368a 100644 --- a/bacula/technotes +++ b/bacula/technotes @@ -3,6 +3,8 @@ General: 23Jul09 +kes Fix int/int32_t problem in accurate_add_file + reported by "Eli Shemer" kes Remove Qt 4.4 code so it compiles on 4.3 (setHeaderHidden). 22Jul09 kes Apply idea of part of Graham's tidy-bsr-source.patch, but modified -- 2.39.5