opnsense-ports/misc/amanda-server/files/patch-ad
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

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