forked from Lainports/freebsd-ports
- define LICENSE - simplify handling of USERS and GROUPS - reorder make variables in accordance with policy - regenerate patches - harden amstatus against task death Changelog: https://www.zmanda.com/amanda-community/?ss360SearchTerm=3.5.1 PR: 264714 Approved by: fbsd@dylanleigh.net (maintainer timeout)
14 lines
469 B
C
14 lines
469 B
C
--- client-src/calcsize.c.orig 2017-12-01 13:26:32 UTC
|
|
+++ client-src/calcsize.c
|
|
@@ -166,7 +166,11 @@ main(
|
|
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
|