summaryrefslogtreecommitdiff
path: root/misc/amanda32-server/files/patch-ad
diff options
context:
space:
mode:
authorJun Kuriyama <kuriyama@FreeBSD.org>2009-01-05 04:59:06 +0000
committerJun Kuriyama <kuriyama@FreeBSD.org>2009-01-05 04:59:06 +0000
commit5cefa4a292a0982c09470deb1c2ccff9dcb43702 (patch)
tree5736138c3749f45afa0089b8b6df157a1845b374 /misc/amanda32-server/files/patch-ad
parentRepocopy from amanda-{server,client} to amanda25-{server,client}. (diff)
Finally upgrade to 2.6.0p2.
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
Notes
Notes: svn path=/head/; revision=225261
Diffstat (limited to '')
-rw-r--r--misc/amanda32-server/files/patch-ad16
1 files changed, 8 insertions, 8 deletions
diff --git a/misc/amanda32-server/files/patch-ad b/misc/amanda32-server/files/patch-ad
index 8d41e16eb9cb..3fff9c551c52 100644
--- a/misc/amanda32-server/files/patch-ad
+++ b/misc/amanda32-server/files/patch-ad
@@ -1,14 +1,14 @@
---- client-src/calcsize.c.orig Mon Nov 4 20:37:53 2002
-+++ client-src/calcsize.c Thu Oct 23 19:25:07 2003
-@@ -130,7 +130,11 @@
- dump_total += (ST_BLOCKS(finfo) + 1)/2 + 1;
- gtar_total += ROUND(4,(ST_BLOCKS(finfo) + 1));
+--- 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
-+ printf(" GNUTAR dump\n");
++ g_printf(" GNUTAR dump\n");
+#else
- printf(" gtar dump\n");
+ g_printf(" gtar dump\n");
+#endif
- printf("total %-9lu %-9lu\n",gtar_total,dump_total);
+ g_printf("total %-9lu %-9lu\n",gtar_total,dump_total);
return 0;
#else