5cefa4a292
Old 2.5.x version is repocopied as misc/amanda25-{server,client}. If you have backup clients which cannot be upgraded to 2.6.x, use these old ports or disable usetimestamps option (enabled by default, which is incompatible with 2.5.x) in amanda.conf. More minor improvements will follow. PR: ports/128836 Submitted by: Goran Lowkrantz <glz@hidden-powers.com> Urged by: many
14 lines
511 B
Text
14 lines
511 B
Text
--- client-src/calcsize.c.orig 2008-01-18 09:31:16.000000000 +0900
|
|
+++ client-src/calcsize.c 2008-08-30 20:11:59.000000000 +0900
|
|
@@ -160,7 +160,11 @@
|
|
dump_total += (ST_BLOCKS(finfo) + (off_t)1) / (off_t)2 + (off_t)1;
|
|
gtar_total += ROUND(4,(ST_BLOCKS(finfo) + (off_t)1));
|
|
}
|
|
+#ifdef GNUTAR
|
|
+ g_printf(" GNUTAR dump\n");
|
|
+#else
|
|
g_printf(" gtar dump\n");
|
|
+#endif
|
|
g_printf("total %-9lu %-9lu\n",gtar_total,dump_total);
|
|
return 0;
|
|
#else
|