From: Kern Sibbald Date: Tue, 27 Jul 2004 09:10:50 +0000 (+0000) Subject: Fix btape compile problem X-Git-Tag: Release-7.0.0~9282 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d6b9955b29d0ca7bc6cf794f01025494da710a22;p=bacula%2Fbacula Fix btape compile problem git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@1491 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/stored/btape.c b/bacula/src/stored/btape.c index 99c24113dd..ae8fb12741 100644 --- a/bacula/src/stored/btape.c +++ b/bacula/src/stored/btape.c @@ -168,7 +168,9 @@ int main(int margc, char *margv[]) Pmsg3(-1, "32 bit printf/scanf problem. i=%d x32=%u y32=%u\n", i, x32, y32); exit(1); } - x64 = 123456789012345678; + x64 = 123456789; + x64 = x64 << 32; + x64 += 123456789; bsnprintf(buf, sizeof(buf), "%" llu, x64); i = bsscanf(buf, "%llu", &y64); if (i != 1 || x64 != y64) { diff --git a/bacula/src/version.h b/bacula/src/version.h index 9c5c2795b6..8623f08e1b 100644 --- a/bacula/src/version.h +++ b/bacula/src/version.h @@ -1,8 +1,8 @@ /* */ #undef VERSION #define VERSION "1.35.1" -#define BDATE "24 July 2004" -#define LSMDATE "24Jul04" +#define BDATE "26 July 2004" +#define LSMDATE "26Jul04" /* Debug flags */ #undef DEBUG