pkgsrc/sysutils/bacula/patches/patch-ab
adam 827f64dee5 Changes 5.0.3:
This 5.0.3 version is significant bug fix update to version 5.0.2.
It includes new code and some new features.
There is no database change since prior versions of 5.0.

Compatibility:
--------------
As always, both the Director and Storage daemon must be upgraded at
the same time.

Older 5.0.x and 3.0.x File Daemons are compatible with the 5.0.3
Director and Storage daemons. There should be no need to upgrade older File
Daemons.

Changes and New Features:
- If a VSS (Windows) snapshot fails, the whole Job is failed, previously
  it printed a warning message and continued.
- New editing codes %b = Job Bytes and %f = Job Files for runscripts
- Any non-Bacula project plugins (i.e. third party plugins)
  must be upgraded to specify AGPLv3 in place of the GPLv2 used previously
  for the PLUGIN_LICENSE.
- The bat Media page text columns can be sorted by clicking on the column.
- If possible, the SD will automatically update the catalog Volume size if
  it does not match the Volume size. The mismatch between the Volume sizes
  typically occurs when the FD has a comm line drop or the FD crashes.
2010-12-26 18:39:45 +00:00

31 lines
957 B
Text

$NetBSD: patch-ab,v 1.7 2010/12/26 18:39:46 adam Exp $
--- src/findlib/attribs.c.orig 2010-08-05 14:29:51.000000000 +0000
+++ src/findlib/attribs.c
@@ -240,7 +240,7 @@ void encode_stat(char *buf, struct stat
int decode_stat(char *buf, struct stat *statp, int32_t *LinkFI)
{
char *p = buf;
- int64_t val;
+ intmax_t val;
p += from_base64(&val, p);
plug(statp->st_dev, val);
@@ -325,7 +325,7 @@ int decode_stat(char *buf, struct stat *
int32_t decode_LinkFI(char *buf, struct stat *statp)
{
char *p = buf;
- int64_t val;
+ intmax_t val;
skip_nonspaces(&p); /* st_dev */
p++; /* skip space */
@@ -632,7 +632,7 @@ int encode_attribsEx(JCR *jcr, char *att
static bool set_win32_attributes(JCR *jcr, ATTR *attr, BFILE *ofd)
{
char *p = attr->attrEx;
- int64_t val;
+ intmax_t val;
WIN32_FILE_ATTRIBUTE_DATA atts;
ULARGE_INTEGER li;
POOLMEM *win32_ofile;