Hello community, here is the log from the commit of package zchunk for openSUSE:Factory checked in at 2019-12-23 22:41:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/zchunk (Old) and /work/SRC/openSUSE:Factory/.zchunk.new.6675 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "zchunk" Mon Dec 23 22:41:47 2019 rev:7 rq:757744 version:1.1.4 Changes: -------- --- /work/SRC/openSUSE:Factory/zchunk/zchunk.changes 2019-04-04 11:59:25.929230939 +0200 +++ /work/SRC/openSUSE:Factory/.zchunk.new.6675/zchunk.changes 2019-12-23 22:43:40.921982686 +0100 @@ -1,0 +2,9 @@ +Wed Dec 18 08:51:57 UTC 2019 - Martin Pluskal <[email protected]> + +- Update to version 1.1.4: + * Simplify regex for detecting part header info + * Fix coverity warnings + * Open files with permissions 0666 and let umask(2) do its job. + * Multipart boundary field can be quoted. + +------------------------------------------------------------------- Old: ---- zchunk-1.1.0.tar.gz New: ---- zchunk-1.1.4.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ zchunk.spec ++++++ --- /var/tmp/diff_new_pack.TvPxPv/_old 2019-12-23 22:43:42.073983187 +0100 +++ /var/tmp/diff_new_pack.TvPxPv/_new 2019-12-23 22:43:42.085983191 +0100 @@ -1,7 +1,7 @@ # # spec file for package zchunk # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LLC # Copyright (c) 2019 Neal Gompa <[email protected]>. # # All modifications and additions to the file contributed by third parties @@ -22,7 +22,7 @@ %global devname libzck-devel Name: zchunk -Version: 1.1.0 +Version: 1.1.4 Release: 0 Summary: Compressed file format that allows easy deltas License: BSD-2-Clause AND MIT @@ -34,9 +34,9 @@ BuildRequires: pkgconfig(libcurl) BuildRequires: pkgconfig(libzstd) BuildRequires: pkgconfig(openssl) -Provides: bundled(buzhash-urlblock) = 0.1 # ABI is unstable between components and ensures that patching doesn't break things Requires: %{libname} = %{version}-%{release} +Provides: bundled(buzhash-urlblock) = 0.1 %description zchunk is a compressed file format that splits the file into independent ++++++ zchunk-1.1.0.tar.gz -> zchunk-1.1.4.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zchunk-1.1.0/README.md new/zchunk-1.1.4/README.md --- old/zchunk-1.1.0/README.md 2019-03-23 23:22:50.000000000 +0100 +++ new/zchunk-1.1.4/README.md 2019-11-13 18:19:40.000000000 +0100 @@ -10,10 +10,8 @@ zchunk files are protected with strong checksums to verify that the file you downloaded is, in fact, the file you wanted. -**zchunk-0.9.0 has been released with the proposed final ABI. Once zchunk-1.0 -has been released, the ABI will be marked as stable, and the only allowed -API/ABI and file format changes will be additions** - +**As of zchunk-1.0, the ABI and API have been marked stable, and the only changes +allowed are backwards-compatible additions** ## Installation To build and install zchunk, first install meson and run @@ -46,5 +44,7 @@ zck_read_header <file> ``` -## C API -\#TODO +## Documentation +- [Format definition](zchunk_format.txt) +- [Initial announcement](https://www.jdieter.net/posts/2018/04/30/introducing-zchunk) +- [How zchunk works (with pretty pictures)](https://www.jdieter.net/posts/2018/05/31/what-is-zchunk) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zchunk-1.1.0/autotest/debian-latest/prep/Dockerfile new/zchunk-1.1.4/autotest/debian-latest/prep/Dockerfile --- old/zchunk-1.1.0/autotest/debian-latest/prep/Dockerfile 2019-03-23 23:22:50.000000000 +0100 +++ new/zchunk-1.1.4/autotest/debian-latest/prep/Dockerfile 2019-11-13 18:19:40.000000000 +0100 @@ -1,2 +1,2 @@ FROM debian:latest -RUN /bin/bash -c 'echo deb http://ftp.debian.org/debian stretch-backports main >> /etc/apt/sources.list && apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get -yqt stretch-backports install meson libzstd-dev && apt-get -yq install gcc pkg-config libcurl4-openssl-dev libssl-dev' +RUN /bin/bash -c 'apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get -yq install meson libzstd-dev && apt-get -yq install gcc pkg-config libcurl4-openssl-dev libssl-dev' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zchunk-1.1.0/meson.build new/zchunk-1.1.4/meson.build --- old/zchunk-1.1.0/meson.build 2019-03-23 23:22:50.000000000 +0100 +++ new/zchunk-1.1.4/meson.build 2019-11-13 18:19:40.000000000 +0100 @@ -1,5 +1,5 @@ project('zck', 'c', - version : '1.1.0', + version : '1.1.4', meson_version : '>=0.44.0', default_options : ['c_std=gnu99']) @@ -11,15 +11,6 @@ cc = meson.get_compiler('c') add_project_arguments(cc.get_supported_arguments(common_cflags), language : 'c') -# Fix coverity bug, shamelessly stolen from libinput -if get_option('coverity') - add_project_arguments('-D_Float128=__uint128_t', language : 'c') - add_project_arguments('-D_Float32x=int', language : 'c') - add_project_arguments('-D_Float32=int', language : 'c') - add_project_arguments('-D_Float64x=long', language : 'c') - add_project_arguments('-D_Float64=long', language : 'c') -endif - if get_option('with-zstd') == 'disabled' zstd_dep = dependency('', required : false) else diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zchunk-1.1.0/src/lib/dl/multipart.c new/zchunk-1.1.4/src/lib/dl/multipart.c --- old/zchunk-1.1.0/src/lib/dl/multipart.c 2019-03-23 23:22:50.000000000 +0100 +++ new/zchunk-1.1.4/src/lib/dl/multipart.c 2019-11-13 18:19:40.000000000 +0100 @@ -68,12 +68,11 @@ ALLOCD_BOOL(NULL, dl); VALIDATE_BOOL(dl->zck); - char *next = "\r\n--%s\r\n" \ - "(content-type:.*\r\n" \ - "content-range: *bytes *([0-9]+) *- *([0-9]+) */[0-9]+ *\r\n\r|" \ - "content-range: *bytes *([0-9]+) *- *([0-9]+) */[0-9]+ *\r\n" \ - "content-type:.*\r\n\r)"; - char *end = "\r\n--%s--\r\n\r"; + /* Response should include content-type, but we only need the range, so + * wildcard out the content-type */ + char *next = "\r\n--%s\r\n.*" \ + "content-range: *bytes *([0-9]+) *- *([0-9]+) */[0-9]+"; + char *end = "\r\n--%s--"; char *regex_n = add_boundary_to_regex(dl->zck, next, dl->boundary); if(regex_n == NULL) return false; @@ -168,14 +167,18 @@ } /* Find double newline and replace final \n with \0, so it's a zero- - * terminated string */ - for(char *j=i; j<end; j++) { + * terminated string. This is the part header. After finding the end + * of the part header (and beginning of the actual data), set j to that + * so we can set i to it when we finish getting the part header info */ + char *j = i; + for(; j<end; j++) { if(j + 4 >= end) { i = j+4; break; } if(memcmp(j, "\r\n\r\n", 4) == 0) { j[3] = '\0'; + j += 4; break; } } @@ -183,29 +186,24 @@ continue; /* Run regex against download range string */ - regmatch_t match[7] = {{0}}; - if(regexec(dl->dl_regex, i, 6, match, 0) != 0) { - if(regexec(dl->end_regex, i, 6, match, 0) != 0) + regmatch_t match[4] = {{0}}; + if(regexec(dl->dl_regex, i, 3, match, 0) != 0) { + if(regexec(dl->end_regex, i, 3, match, 0) != 0) set_error(dl->zck, "Unable to find multipart download range"); goto end; } - /* Set match offset to 2 if content-type and content-range is reversed */ - int m = 0; - if(match[2].rm_so < 0) - m = 2; - /* Get range start from regex */ size_t rstart = 0; - for(char *c=i + match[2 + m].rm_so; c < i + match[2 + m].rm_eo; c++) + for(char *c=i + match[1].rm_so; c < i + match[1].rm_eo; c++) rstart = rstart*10 + (size_t)(c[0] - 48); /* Get range end from regex */ size_t rend = 0; - for(char *c=i + match[3 + m].rm_so; c < i + match[3 + m].rm_eo; c++) + for(char *c=i + match[2].rm_so; c < i + match[2].rm_eo; c++) rend = rend*10 + (size_t)(c[0] - 48); - i += match[1].rm_eo + 1; + i = j; zck_log(ZCK_LOG_DEBUG, "Download range: %lu-%lu", rstart, rend); mp->length = rend-rstart+1; mp->state = 1; @@ -238,8 +236,16 @@ regmatch_t match[2] = {{0}}; if(regexec(dl->hdr_regex, buf, 2, match, 0) == 0) { reset_mp(dl->mp); - char *boundary = zmalloc(match[1].rm_eo - match[1].rm_so + 1); - memcpy(boundary, buf + match[1].rm_so, match[1].rm_eo - match[1].rm_so); + size_t boundary_length = match[1].rm_eo - match[1].rm_so; + char *boundary_start = buf + match[1].rm_so; + if ( boundary_start[0] == '\"' && boundary_length > 2 + && boundary_start[boundary_length-1] == '\"') { + /* Remove optional quotes */ + boundary_start += 1; + boundary_length -= 2; + } + char *boundary = zmalloc(boundary_length + 1); + memcpy(boundary, boundary_start, boundary_length); zck_log(ZCK_LOG_DEBUG, "Multipart boundary: %s", boundary); dl->boundary = boundary; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zchunk-1.1.0/src/lib/zck.c new/zchunk-1.1.4/src/lib/zck.c --- old/zchunk-1.1.0/src/lib/zck.c 2019-03-23 23:22:50.000000000 +0100 +++ new/zchunk-1.1.4/src/lib/zck.c 2019-11-13 18:19:40.000000000 +0100 @@ -224,7 +224,7 @@ free(data); set_fatal_error(zck, "Hash digest size mismatch for header " "validation\n" - "Expected: %lu\nProvided: %lu", + "Expected: %i\nProvided: %lu", chk_type.digest_size*2, length); return false; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zchunk-1.1.0/src/lib/zck_private.h new/zchunk-1.1.4/src/lib/zck_private.h --- old/zchunk-1.1.0/src/lib/zck_private.h 2019-03-23 23:22:50.000000000 +0100 +++ new/zchunk-1.1.4/src/lib/zck_private.h 2019-11-13 18:19:40.000000000 +0100 @@ -8,6 +8,7 @@ #include <regex.h> #include "buzhash/buzhash.h" #include "uthash.h" +#include "zck.h" #define BUF_SIZE 32768 /* Maximum string length for a compressed size_t */ @@ -89,7 +90,6 @@ } typedef struct zckComp zckComp; -typedef zckCtx zckCtx; typedef bool (*finit)(zckCtx *zck, zckComp *comp); typedef bool (*fparam)(zckCtx *zck,zckComp *comp, int option, const void *value); @@ -103,18 +103,15 @@ const size_t fd_size); typedef bool (*fcclose)(zckCtx *zck, zckComp *comp); -typedef enum zck_log_type zck_log_type; - - typedef struct zckHashType { int type; int digest_size; } zckHashType; -typedef struct zckHash { +struct zckHash { zckHashType *type; void *ctx; -} zckHash; +}; typedef void CURL; @@ -125,7 +122,7 @@ size_t buffer_len; } zckMP; -typedef struct zckDL { +struct zckDL { struct zckCtx *zck; size_t dl; size_t ul; @@ -147,10 +144,10 @@ void *write_data; zck_wcb header_cb; void *header_data; -} zckDL; +}; /* Contains an index item pointing to a chunk */ -typedef struct zckChunk { +struct zckChunk { char *digest; int digest_size; int valid; @@ -162,10 +159,10 @@ struct zckChunk *src; zckCtx *zck; UT_hash_handle hh; -} zckChunk; +}; /* Contains everything about an index and a pointer to the first index item */ -typedef struct zckIndex { +struct zckIndex { size_t count; size_t length; int hash_type; @@ -174,7 +171,7 @@ zckChunk *last; zckChunk *current; zckChunk *ht; -} zckIndex; +}; /* Contains a single range */ typedef struct zckRangeItem { @@ -186,13 +183,13 @@ /* Contains a series of ranges, information about them, a link to the first * range item, and an index describing what information is in the ranges */ -typedef struct zckRange { +struct zckRange { unsigned int count; zckRangeItem *first; zckIndex index; -} zckRange; +}; -typedef struct zckComp { +struct zckComp { int started; uint8_t type; @@ -221,7 +218,7 @@ fdecomp decompress; fdcompend end_dchunk; fcclose close; -} zckComp; +}; typedef struct zckSig { zckHashType hash_type; @@ -235,7 +232,7 @@ zckSig *sig; } zckSigCollection; -typedef struct zckCtx { +struct zckCtx { int temp_fd; int fd; int mode; @@ -295,7 +292,7 @@ char *msg; int error_state; -} zckCtx; +}; int get_tmp_fd() __attribute__ ((warn_unused_result)); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zchunk-1.1.0/src/unzck.c new/zchunk-1.1.4/src/unzck.c --- old/zchunk-1.1.0/src/unzck.c 2019-03-23 23:22:50.000000000 +0100 +++ new/zchunk-1.1.4/src/unzck.c 2019-11-13 18:19:40.000000000 +0100 @@ -139,7 +139,7 @@ int dst_fd = STDOUT_FILENO; if(!arguments.stdout) { - dst_fd = open(out_name, O_TRUNC | O_WRONLY | O_CREAT, 0644); + dst_fd = open(out_name, O_TRUNC | O_WRONLY | O_CREAT, 0666); if(dst_fd < 0) { dprintf(STDERR_FILENO, "Unable to open %s", out_name); perror(""); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zchunk-1.1.0/src/zck.c new/zchunk-1.1.4/src/zck.c --- old/zchunk-1.1.0/src/zck.c 2019-03-23 23:22:50.000000000 +0100 +++ new/zchunk-1.1.4/src/zck.c 2019-11-13 18:19:40.000000000 +0100 @@ -179,7 +179,7 @@ close(dict_fd); } - int dst_fd = open(out_name, O_TRUNC | O_WRONLY | O_CREAT, 0644); + int dst_fd = open(out_name, O_TRUNC | O_WRONLY | O_CREAT, 0666); if(dst_fd < 0) { dprintf(STDERR_FILENO, "Unable to open %s", out_name); perror(""); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zchunk-1.1.0/src/zck_dl.c new/zchunk-1.1.4/src/zck_dl.c --- old/zchunk-1.1.0/src/zck_dl.c 2019-03-23 23:22:50.000000000 +0100 +++ new/zchunk-1.1.4/src/zck_dl.c 2019-11-13 18:19:40.000000000 +0100 @@ -314,7 +314,7 @@ } char *outname = basename(arguments.args[0]); - int dst_fd = open(outname, O_RDWR | O_CREAT, 0644); + int dst_fd = open(outname, O_RDWR | O_CREAT, 0666); if(dst_fd < 0) { dprintf(STDERR_FILENO, "Unable to open %s: %s\n", outname, strerror(errno)); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zchunk-1.1.0/src/zck_gen_zdict.c new/zchunk-1.1.4/src/zck_gen_zdict.c --- old/zchunk-1.1.0/src/zck_gen_zdict.c 2019-03-23 23:22:50.000000000 +0100 +++ new/zchunk-1.1.4/src/zck_gen_zdict.c 2019-11-13 18:19:40.000000000 +0100 @@ -224,7 +224,7 @@ assert(dict_block); snprintf(dict_block, strlen(dir) + strlen(out_name) + 12, "%s/%s.%li", dir, out_name, zck_get_chunk_number(idx)); - int dst_fd = open(dict_block, O_TRUNC | O_WRONLY | O_CREAT, 0644); + int dst_fd = open(dict_block, O_TRUNC | O_WRONLY | O_CREAT, 0666); if(dst_fd < 0) { dprintf(STDERR_FILENO, "Unable to open %s", dict_block); perror(""); Binary files old/zchunk-1.1.0/test/abi/stable/libzck.so.1.1.0 and new/zchunk-1.1.4/test/abi/stable/libzck.so.1.1.0 differ Binary files old/zchunk-1.1.0/test/abi/stable/libzck.so.1.1.4 and new/zchunk-1.1.4/test/abi/stable/libzck.so.1.1.4 differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zchunk-1.1.0/test/abi/stable/zck.h new/zchunk-1.1.4/test/abi/stable/zck.h --- old/zchunk-1.1.0/test/abi/stable/zck.h 2019-03-23 23:22:50.000000000 +0100 +++ new/zchunk-1.1.4/test/abi/stable/zck.h 2019-11-13 18:19:40.000000000 +0100 @@ -1,7 +1,7 @@ #ifndef ZCK_H #define ZCK_H -#define ZCK_VERSION "1.1.0" +#define ZCK_VERSION "1.1.4" #include <stdlib.h> #include <stdbool.h> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zchunk-1.1.0/test/compat_reports/zchunk/1.0.4_to_1.1.0/compat_report.html new/zchunk-1.1.4/test/compat_reports/zchunk/1.0.4_to_1.1.0/compat_report.html --- old/zchunk-1.1.0/test/compat_reports/zchunk/1.0.4_to_1.1.0/compat_report.html 2019-03-23 23:22:50.000000000 +0100 +++ new/zchunk-1.1.4/test/compat_reports/zchunk/1.0.4_to_1.1.0/compat_report.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,475 +0,0 @@ -<!-- kind:binary;verdict:compatible;affected:0;added:0;removed:0;type_problems_high:0;type_problems_medium:0;type_problems_low:0;interface_problems_high:0;interface_problems_medium:0;interface_problems_low:0;changed_constants:0;tool_version:2.3 --> -<!-- kind:source;verdict:compatible;affected:0;added:0;removed:0;type_problems_high:0;type_problems_medium:0;type_problems_low:0;interface_problems_high:0;interface_problems_medium:0;interface_problems_low:0;changed_constants:0;tool_version:2.3 --> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> -<head> -<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> -<meta name="viewport" content="width=device-width,initial-scale=1" /> -<meta name="keywords" content="zchunk, compatibility, API, ABI, report" /> -<meta name="description" content="API/ABI compatibility report for the zchunk object between 1.0.4 and 1.1.0 versions" /> -<meta name="robots" content="noindex" /> -<title>zchunk: 1.0.4 to 1.1.0 compatibility report</title> -<style type="text/css"> -body { - font-family:Arial, sans-serif; - background-color:White; - color:Black; -} -hr { - color:Black; - background-color:Black; - height:1px; - border:0; -} -h1 { - margin-bottom:0px; - padding-bottom:0px; - font-size:1.625em; -} -h2 { - margin-bottom:0px; - padding-bottom:0px; - font-size:1.25em; - white-space:nowrap; -} -span.section { - font-weight:bold; - cursor:pointer; - color:#003E69; - white-space:nowrap; - margin-left:0.3125em; -} -span.new_sign { - font-weight:bold; - margin-left:1.65em; - color:#003E69; -} -span.new_sign_lbl { - margin-left:3em; - font-size:1em; - color:Black; -} -span:hover.section { - color:#336699; -} -span.sect_aff { - cursor:pointer; - padding-left:1.55em; - font-size:0.875em; - color:#cc3300; -} -span.sect_info { - cursor:pointer; - padding-left:1.55em; - font-size:0.875em; - color:Black; -} -span.ext { - font-weight:normal; -} -span.h_name { - color:#cc3300; - font-size:0.875em; - font-weight:bold; -} -div.h_list, div.lib_list { - font-size:0.94em; - padding-left:0.4em; -} -span.ns { - color:#408080; - font-size:0.94em; -} -span.lib_name { - color:Green; - font-size:0.875em; - font-weight:bold; -} -span.iname { - font-weight:bold; - color:#003E69; - margin-left:0.3125em; -} -span.iname_b { - font-weight:bold; -} -span.iname_a { - color:#333333; - font-weight:bold; - font-size:0.94em; -} -span.sym_p { - font-weight:normal; - white-space:normal; -} -span.sym_pd { - white-space:normal; -} -span.sym_p span, span.sym_pd span { - white-space:nowrap; -} -div.affect { - padding-left:1em; - padding-bottom:10px; - font-size:0.87em; - font-style:italic; - line-height:0.9em; -} -div.affected { - padding-left:1.9em; - padding-top:10px; -} -table.ptable { - border-collapse:collapse; - border:1px outset black; - margin-left:0.95em; - margin-top:3px; - margin-bottom:3px; - width:56.25em; -} -table.ptable td { - border:1px solid gray; - padding:3px; - font-size:0.875em; - text-align:left; - vertical-align:top; - max-width:28em; - word-wrap:break-word; -} -table.ptable th.pn { - width:2%; -} -table.ptable th.chg { - width:47%; -} -table.vtable { - border-collapse:collapse; - border:1px outset black; - margin-left:1.9em; - margin-top:0.7em; -} -table.vtable td { - border:1px solid gray; - padding:3px; - font-size:0.875em; - vertical-align:top; - max-width:450px; - word-wrap:break-word; -} -table.ptable th, table.vtable th { - background-color:#eeeeee; - font-weight:bold; - color:#333333; - font-family:Verdana, Arial; - font-size:0.875em; - border:1px solid gray; - text-align:center; - vertical-align:top; - white-space:nowrap; - padding:3px; -} -table.summary { - border-collapse:collapse; - border:1px outset black; -} -table.summary th { - background-color:#eeeeee; - font-weight:normal; - text-align:left; - font-size:0.94em; - white-space:nowrap; - border:1px inset gray; - padding:3px; -} -table.summary td { - text-align:right; - white-space:nowrap; - border:1px inset gray; - padding:3px 5px 3px 10px; -} -span.mngl { - padding-left:1em; - font-size:0.875em; - cursor:text; - color:#444444; - font-weight:bold; -} -span.pleft { - padding-left:2.5em; -} -span.sym_ver { - color:#333333; - white-space:nowrap; - font-family:"DejaVu Sans Mono", Monospace; -} -span.attr { - color:#333333; - font-weight:normal; -} -span.color_p { - font-style:italic; - color:Brown; -} -span.p { - font-style:italic; -} -span.fp { - font-style:italic; - background-color:#DCDCDC; -} -span.ttype { - font-weight:normal; -} -span.nowrap { - white-space:nowrap; -} -span.value { - font-weight:bold; -} -.passed { - background-color:#CCFFCC; - font-weight:normal; -} -.warning { - background-color:#F4F4AF; - font-weight:normal; -} -.failed { - background-color:#FFCCCC; - font-weight:normal; -} -.new { - background-color:#C6DEFF; - font-weight:normal; -} -.compatible { - background-color:#CCFFCC; - font-weight:normal; -} -.almost_compatible { - background-color:#FFDAA3; - font-weight:normal; -} -.incompatible { - background-color:#FFCCCC; - font-weight:normal; -} -.gray { - background-color:#DCDCDC; - font-weight:normal; -} -.top_ref { - font-size:0.69em; -} -.footer { - font-size:0.75em; -} - -.tabset { - float:left; -} -a.tab { - border:1px solid Black; - float:left; - margin:0px 5px -1px 0px; - padding:3px 5px 3px 5px; - position:relative; - font-size:0.875em; - background-color:#DDD; - text-decoration:none; - color:Black; -} -a.disabled:hover -{ - color:Black; - background:#EEE; -} -a.active:hover -{ - color:Black; - background:White; -} -a.active { - border-bottom-color:White; - background-color:White; -} -div.tab { - border-top:1px solid Black; - padding:0px; - width:100%; - clear:both; -} -</style> -<script type="text/javascript" language="JavaScript"> -<!-- -function showContent(header, id) -{ - e = document.getElementById(id); - if(e.style.display == 'none') - { - e.style.display = 'block'; - e.style.visibility = 'visible'; - header.innerHTML = header.innerHTML.replace(/\[[^0-9 ]\]/gi,"[−]"); - } - else - { - e.style.display = 'none'; - e.style.visibility = 'hidden'; - header.innerHTML = header.innerHTML.replace(/\[[^0-9 ]\]/gi,"[+]"); - } -} -function initTabs() -{ - var url = window.location.href; - if(url.indexOf('_Source_')!=-1 || url.indexOf('#Source')!=-1) - { - var tab1 = document.getElementById('BinaryID'); - var tab2 = document.getElementById('SourceID'); - tab1.className='tab disabled'; - tab2.className='tab active'; - } - var sets = document.getElementsByTagName('div'); - for (var i = 0; i < sets.length; i++) - { - if (sets[i].className.indexOf('tabset') != -1) - { - var tabs = []; - var links = sets[i].getElementsByTagName('a'); - for (var j = 0; j < links.length; j++) - { - if (links[j].className.indexOf('tab') != -1) - { - tabs.push(links[j]); - links[j].tabs = tabs; - var tab = document.getElementById(links[j].href.substr(links[j].href.indexOf('#') + 1)); - //reset all tabs on start - if (tab) - { - if (links[j].className.indexOf('active')!=-1) { - tab.style.display = 'block'; - } - else { - tab.style.display = 'none'; - } - } - links[j].onclick = function() - { - var tab = document.getElementById(this.href.substr(this.href.indexOf('#') + 1)); - if (tab) - { - //reset all tabs before change - for (var k = 0; k < this.tabs.length; k++) - { - document.getElementById(this.tabs[k].href.substr(this.tabs[k].href.indexOf('#') + 1)).style.display = 'none'; - this.tabs[k].className = this.tabs[k].className.replace('active', 'disabled'); - } - this.className = 'tab active'; - tab.style.display = 'block'; - // window.location.hash = this.id.replace('ID', ''); - return false; - } - } - } - } - } - } - if(url.indexOf('#')!=-1) { - location.href=location.href; - } -} -if (window.addEventListener) window.addEventListener('load', initTabs, false); -else if (window.attachEvent) window.attachEvent('onload', initTabs); ---> -</script> -</head> -<body><a name='Source'></a><a name='Binary'></a><a name='Top'></a><h1>API compatibility report for the <span style='color:Blue;'>libzck.so</span> object between <span style='color:Red;'>1.0.4</span> and <span style='color:Red;'>1.1.0</span> versions on <span style='color:Blue;'>x86_64</span></h1> - - <br/> - <div class='tabset'> - <a id='BinaryID' href='#BinaryTab' class='tab active'>Binary<br/>Compatibility</a> - <a id='SourceID' href='#SourceTab' style='margin-left:3px' class='tab disabled'>Source<br/>Compatibility</a> - </div><div id='BinaryTab' class='tab'> -<h2>Test Info</h2><hr/> -<table class='summary'> -<tr><th>Module Name</th><td>zchunk</td></tr> -<tr><th>Version #1</th><td>1.0.4</td></tr> -<tr><th>Version #2</th><td>1.1.0</td></tr> -<tr><th>Arch</th><td>x86_64</td></tr> -<tr><th>GCC Version</th><td>9.0.1</td></tr> -<tr><th>Subject</th><td width='150px'>Binary Compatibility</td></tr> -</table> -<h2>Test Results</h2><hr/> -<table class='summary'><tr><th>Total Header Files</th><td><a href='#Headers' style='color:Blue;'>1</a></td></tr> -<tr><th>Total Objects</th><td><a href='#Libs' style='color:Blue;'>1</a></td></tr> -<tr><th>Total Symbols / Types</th><td>75 / 13</td></tr> -<tr><th>Compatibility</th> -<td class='compatible'>100%</td> -</tr> -</table> -<h2>Problem Summary</h2><hr/> -<table class='summary'><tr><th></th><th style='text-align:center;'>Severity</th><th style='text-align:center;'>Count</th></tr><tr><th>Added Symbols</th><td>-</td><td>0</td></tr> -<tr><th>Removed Symbols</th><td>High</td><td>0</td></tr> -<tr><th rowspan='3'>Problems with<br/>Data Types</th><td>High</td><td>0</td></tr> -<tr><td>Medium</td><td>0</td></tr> -<tr><td>Low</td><td>0</td></tr> -<tr><th rowspan='3'>Problems with<br/>Symbols</th><td>High</td><td>0</td></tr> -<tr><td>Medium</td><td>0</td></tr> -<tr><td>Low</td><td>0</td></tr> -<tr><th>Problems with<br/>Constants</th><td>Low</td><td>0</td></tr> -</table> - -<a name='Headers'></a><h2>Header Files <span class='gray'> 1 </span></h2><hr/> -<div class='h_list'> -zck.h<br/> -</div> -<br/><a class='top_ref' href='#Top'>to the top</a><br/> -<a name='Libs'></a><h2>Objects <span class='gray'> 1 </span></h2><hr/> -<div class='lib_list'> -libzck.so.1.0.4<br/> -</div> -<br/><a class='top_ref' href='#Top'>to the top</a><br/> -<br/><br/><br/></div><div id='SourceTab' class='tab'> -<h2>Test Info</h2><hr/> -<table class='summary'> -<tr><th>Module Name</th><td>zchunk</td></tr> -<tr><th>Version #1</th><td>1.0.4</td></tr> -<tr><th>Version #2</th><td>1.1.0</td></tr> -<tr><th>Arch</th><td>x86_64</td></tr> -<tr><th>Subject</th><td width='150px'>Source Compatibility</td></tr> -</table> -<h2>Test Results</h2><hr/> -<table class='summary'><tr><th>Total Header Files</th><td><a href='#Headers' style='color:Blue;'>1</a></td></tr> -<tr><th>Total Objects</th><td><a href='#Libs' style='color:Blue;'>1</a></td></tr> -<tr><th>Total Symbols / Types</th><td>75 / 13</td></tr> -<tr><th>Compatibility</th> -<td class='compatible'>100%</td> -</tr> -</table> -<h2>Problem Summary</h2><hr/> -<table class='summary'><tr><th></th><th style='text-align:center;'>Severity</th><th style='text-align:center;'>Count</th></tr><tr><th>Added Symbols</th><td>-</td><td>0</td></tr> -<tr><th>Removed Symbols</th><td>High</td><td>0</td></tr> -<tr><th rowspan='3'>Problems with<br/>Data Types</th><td>High</td><td>0</td></tr> -<tr><td>Medium</td><td>0</td></tr> -<tr><td>Low</td><td>0</td></tr> -<tr><th rowspan='3'>Problems with<br/>Symbols</th><td>High</td><td>0</td></tr> -<tr><td>Medium</td><td>0</td></tr> -<tr><td>Low</td><td>0</td></tr> -<tr><th>Problems with<br/>Constants</th><td>Low</td><td>0</td></tr> -</table> - -<a name='Headers'></a><h2>Header Files <span class='gray'> 1 </span></h2><hr/> -<div class='h_list'> -zck.h<br/> -</div> -<br/><a class='top_ref' href='#Top'>to the top</a><br/> -<a name='Libs'></a><h2>Objects <span class='gray'> 1 </span></h2><hr/> -<div class='lib_list'> -libzck.so.1.0.4<br/> -</div> -<br/><a class='top_ref' href='#Top'>to the top</a><br/> -<br/><br/><br/></div><hr/> -<div class='footer' align='right'><i>Generated by <a href='https://github.com/lvc/abi-compliance-checker'>ABI Compliance Checker</a> 2.3  </i> -</div> -<br/> - -</body></html> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zchunk-1.1.0/test/compat_reports/zchunk/1.1.3_to_1.1.4/compat_report.html new/zchunk-1.1.4/test/compat_reports/zchunk/1.1.3_to_1.1.4/compat_report.html --- old/zchunk-1.1.0/test/compat_reports/zchunk/1.1.3_to_1.1.4/compat_report.html 1970-01-01 01:00:00.000000000 +0100 +++ new/zchunk-1.1.4/test/compat_reports/zchunk/1.1.3_to_1.1.4/compat_report.html 2019-11-13 18:19:40.000000000 +0100 @@ -0,0 +1,502 @@ +<!-- kind:binary;verdict:compatible;affected:0;added:0;removed:0;type_problems_high:0;type_problems_medium:0;type_problems_low:0;interface_problems_high:0;interface_problems_medium:0;interface_problems_low:0;changed_constants:0;tool_version:2.3 --> +<!-- kind:source;verdict:compatible;affected:0;added:0;removed:0;type_problems_high:0;type_problems_medium:0;type_problems_low:0;interface_problems_high:0;interface_problems_medium:0;interface_problems_low:0;changed_constants:0;tool_version:2.3 --> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<meta name="viewport" content="width=device-width,initial-scale=1" /> +<meta name="keywords" content="zchunk, compatibility, API, ABI, report" /> +<meta name="description" content="API/ABI compatibility report for the zchunk object between 1.1.3 and 1.1.4 versions" /> +<meta name="robots" content="noindex" /> +<title>zchunk: 1.1.3 to 1.1.4 compatibility report</title> +<style type="text/css"> +body { + font-family:Arial, sans-serif; + background-color:White; + color:Black; +} +hr { + color:Black; + background-color:Black; + height:1px; + border:0; +} +h1 { + margin-bottom:0px; + padding-bottom:0px; + font-size:1.625em; +} +h2 { + margin-bottom:0px; + padding-bottom:0px; + font-size:1.25em; + white-space:nowrap; +} +span.section { + font-weight:bold; + cursor:pointer; + color:#003E69; + white-space:nowrap; + margin-left:0.3125em; +} +span.new_sign { + font-weight:bold; + margin-left:1.65em; + color:#003E69; +} +span.new_sign_lbl { + margin-left:3em; + font-size:1em; + color:Black; +} +span:hover.section { + color:#336699; +} +span.sect_aff { + cursor:pointer; + padding-left:1.55em; + font-size:0.875em; + color:#cc3300; +} +span.sect_info { + cursor:pointer; + padding-left:1.55em; + font-size:0.875em; + color:Black; +} +span.ext { + font-weight:normal; +} +span.h_name { + color:#cc3300; + font-size:0.875em; + font-weight:bold; +} +div.h_list, div.lib_list { + font-size:0.94em; + padding-left:0.4em; +} +span.ns { + color:#408080; + font-size:0.94em; +} +span.lib_name { + color:Green; + font-size:0.875em; + font-weight:bold; +} +span.iname { + font-weight:bold; + color:#003E69; + margin-left:0.3125em; +} +span.iname_b { + font-weight:bold; +} +span.iname_a { + color:#333333; + font-weight:bold; + font-size:0.94em; +} +span.sym_p { + font-weight:normal; + white-space:normal; +} +span.sym_pd { + white-space:normal; +} +span.sym_p span, span.sym_pd span { + white-space:nowrap; +} +div.affect { + padding-left:1em; + padding-bottom:10px; + font-size:0.87em; + font-style:italic; + line-height:0.9em; +} +div.affected { + padding-left:1.9em; + padding-top:10px; +} +table.ptable { + border-collapse:collapse; + border:1px outset black; + margin-left:0.95em; + margin-top:3px; + margin-bottom:3px; + width:56.25em; +} +table.ptable td { + border:1px solid gray; + padding:3px; + font-size:0.875em; + text-align:left; + vertical-align:top; + max-width:28em; + word-wrap:break-word; +} +table.ptable th.pn { + width:2%; +} +table.ptable th.chg { + width:47%; +} +table.vtable { + border-collapse:collapse; + border:1px outset black; + margin-left:1.9em; + margin-top:0.7em; +} +table.vtable td { + border:1px solid gray; + padding:3px; + font-size:0.875em; + vertical-align:top; + max-width:450px; + word-wrap:break-word; +} +table.ptable th, table.vtable th { + background-color:#eeeeee; + font-weight:bold; + color:#333333; + font-family:Verdana, Arial; + font-size:0.875em; + border:1px solid gray; + text-align:center; + vertical-align:top; + white-space:nowrap; + padding:3px; +} +table.summary { + border-collapse:collapse; + border:1px outset black; +} +table.summary th { + background-color:#eeeeee; + font-weight:normal; + text-align:left; + font-size:0.94em; + white-space:nowrap; + border:1px inset gray; + padding:3px; +} +table.summary td { + text-align:right; + white-space:nowrap; + border:1px inset gray; + padding:3px 5px 3px 10px; +} +span.mngl { + padding-left:1em; + font-size:0.875em; + cursor:text; + color:#444444; + font-weight:bold; +} +span.pleft { + padding-left:2.5em; +} +span.sym_ver { + color:#333333; + white-space:nowrap; + font-family:"DejaVu Sans Mono", Monospace; +} +span.attr { + color:#333333; + font-weight:normal; +} +span.color_p { + font-style:italic; + color:Brown; +} +span.p { + font-style:italic; +} +span.fp { + font-style:italic; + background-color:#DCDCDC; +} +span.ttype { + font-weight:normal; +} +span.nowrap { + white-space:nowrap; +} +span.value { + font-weight:bold; +} +.passed { + background-color:#CCFFCC; + font-weight:normal; +} +.warning { + background-color:#F4F4AF; + font-weight:normal; +} +.failed { + background-color:#FFCCCC; + font-weight:normal; +} +.new { + background-color:#C6DEFF; + font-weight:normal; +} +.compatible { + background-color:#CCFFCC; + font-weight:normal; +} +.almost_compatible { + background-color:#FFDAA3; + font-weight:normal; +} +.incompatible { + background-color:#FFCCCC; + font-weight:normal; +} +.gray { + background-color:#DCDCDC; + font-weight:normal; +} +.top_ref { + font-size:0.69em; +} +.footer { + font-size:0.75em; +} + +.tabset { + float:left; +} +a.tab { + border:1px solid Black; + float:left; + margin:0px 5px -1px 0px; + padding:3px 5px 3px 5px; + position:relative; + font-size:0.875em; + background-color:#DDD; + text-decoration:none; + color:Black; +} +a.disabled:hover +{ + color:Black; + background:#EEE; +} +a.active:hover +{ + color:Black; + background:White; +} +a.active { + border-bottom-color:White; + background-color:White; +} +div.tab { + border-top:1px solid Black; + padding:0px; + width:100%; + clear:both; +} +</style> +<script type="text/javascript" language="JavaScript"> +<!-- +function showContent(header, id) +{ + e = document.getElementById(id); + if(e.style.display == 'none') + { + e.style.display = 'block'; + e.style.visibility = 'visible'; + header.innerHTML = header.innerHTML.replace(/\[[^0-9 ]\]/gi,"[−]"); + } + else + { + e.style.display = 'none'; + e.style.visibility = 'hidden'; + header.innerHTML = header.innerHTML.replace(/\[[^0-9 ]\]/gi,"[+]"); + } +} +function initTabs() +{ + var url = window.location.href; + if(url.indexOf('_Source_')!=-1 || url.indexOf('#Source')!=-1) + { + var tab1 = document.getElementById('BinaryID'); + var tab2 = document.getElementById('SourceID'); + tab1.className='tab disabled'; + tab2.className='tab active'; + } + var sets = document.getElementsByTagName('div'); + for (var i = 0; i < sets.length; i++) + { + if (sets[i].className.indexOf('tabset') != -1) + { + var tabs = []; + var links = sets[i].getElementsByTagName('a'); + for (var j = 0; j < links.length; j++) + { + if (links[j].className.indexOf('tab') != -1) + { + tabs.push(links[j]); + links[j].tabs = tabs; + var tab = document.getElementById(links[j].href.substr(links[j].href.indexOf('#') + 1)); + //reset all tabs on start + if (tab) + { + if (links[j].className.indexOf('active')!=-1) { + tab.style.display = 'block'; + } + else { + tab.style.display = 'none'; + } + } + links[j].onclick = function() + { + var tab = document.getElementById(this.href.substr(this.href.indexOf('#') + 1)); + if (tab) + { + //reset all tabs before change + for (var k = 0; k < this.tabs.length; k++) + { + document.getElementById(this.tabs[k].href.substr(this.tabs[k].href.indexOf('#') + 1)).style.display = 'none'; + this.tabs[k].className = this.tabs[k].className.replace('active', 'disabled'); + } + this.className = 'tab active'; + tab.style.display = 'block'; + // window.location.hash = this.id.replace('ID', ''); + return false; + } + } + } + } + } + } + if(url.indexOf('#')!=-1) { + location.href=location.href; + } +} +if (window.addEventListener) window.addEventListener('load', initTabs, false); +else if (window.attachEvent) window.attachEvent('onload', initTabs); +--> +</script> +</head> +<body><a name='Source'></a><a name='Binary'></a><a name='Top'></a><h1>API compatibility report for the <span style='color:Blue;'>libzck.so</span> object between <span style='color:Red;'>1.1.3</span> and <span style='color:Red;'>1.1.4</span> versions on <span style='color:Blue;'>x86_64</span></h1> + + <br/> + <div class='tabset'> + <a id='BinaryID' href='#BinaryTab' class='tab active'>Binary<br/>Compatibility</a> + <a id='SourceID' href='#SourceTab' style='margin-left:3px' class='tab disabled'>Source<br/>Compatibility</a> + </div><div id='BinaryTab' class='tab'> +<h2>Test Info</h2><hr/> +<table class='summary'> +<tr><th>Module Name</th><td>zchunk</td></tr> +<tr><th>Version #1</th><td>1.1.3 (gcc 9.1.1)</td></tr> +<tr><th>Version #2</th><td>1.1.4 (gcc 9.2.1)</td></tr> +<tr><th>Arch</th><td>x86_64</td></tr> +<tr><th>Subject</th><td width='150px'>Binary Compatibility</td></tr> +</table> +<h2>Test Results</h2><hr/> +<table class='summary'><tr><th>Total Header Files</th><td><a href='#Headers' style='color:Blue;'>1</a></td></tr> +<tr><th>Total Source Files</th><td><a href='#Sources' style='color:Blue;'>9</a></td></tr> +<tr><th>Total Objects</th><td><a href='#Libs' style='color:Blue;'>1</a></td></tr> +<tr><th>Total Symbols / Types</th><td>75 / 21</td></tr> +<tr><th>Compatibility</th> +<td class='compatible'>100%</td> +</tr> +</table> +<h2>Problem Summary</h2><hr/> +<table class='summary'><tr><th></th><th style='text-align:center;'>Severity</th><th style='text-align:center;'>Count</th></tr><tr><th>Added Symbols</th><td>-</td><td>0</td></tr> +<tr><th>Removed Symbols</th><td>High</td><td>0</td></tr> +<tr><th rowspan='3'>Problems with<br/>Data Types</th><td>High</td><td>0</td></tr> +<tr><td>Medium</td><td>0</td></tr> +<tr><td>Low</td><td>0</td></tr> +<tr><th rowspan='3'>Problems with<br/>Symbols</th><td>High</td><td>0</td></tr> +<tr><td>Medium</td><td>0</td></tr> +<tr><td>Low</td><td>0</td></tr> +<tr><th>Problems with<br/>Constants</th><td>Low</td><td>0</td></tr> +</table> + +<a name='Headers'></a><h2>Header Files <span class='gray'> 1 </span></h2><hr/> +<div class='h_list'> +zck.h<br/> +</div> +<br/><a class='top_ref' href='#Top'>to the top</a><br/> +<a name='Sources'></a><h2>Source Files <span class='gray'> 9 </span></h2><hr/> +<div class='h_list'> +comp.c<br/> +dl.c<br/> +error.c<br/> +hash.c<br/> +header.c<br/> +index_read.c<br/> +log.c<br/> +range.c<br/> +zck.c<br/> +</div> +<br/><a class='top_ref' href='#Top'>to the top</a><br/> +<a name='Libs'></a><h2>Objects <span class='gray'> 1 </span></h2><hr/> +<div class='lib_list'> +libzck.so.1.1.3<br/> +</div> +<br/><a class='top_ref' href='#Top'>to the top</a><br/> +<br/><br/><br/></div><div id='SourceTab' class='tab'> +<h2>Test Info</h2><hr/> +<table class='summary'> +<tr><th>Module Name</th><td>zchunk</td></tr> +<tr><th>Version #1</th><td>1.1.3</td></tr> +<tr><th>Version #2</th><td>1.1.4</td></tr> +<tr><th>Arch</th><td>x86_64</td></tr> +<tr><th>Subject</th><td width='150px'>Source Compatibility</td></tr> +</table> +<h2>Test Results</h2><hr/> +<table class='summary'><tr><th>Total Header Files</th><td><a href='#Headers' style='color:Blue;'>1</a></td></tr> +<tr><th>Total Source Files</th><td><a href='#Sources' style='color:Blue;'>9</a></td></tr> +<tr><th>Total Objects</th><td><a href='#Libs' style='color:Blue;'>1</a></td></tr> +<tr><th>Total Symbols / Types</th><td>75 / 21</td></tr> +<tr><th>Compatibility</th> +<td class='compatible'>100%</td> +</tr> +</table> +<h2>Problem Summary</h2><hr/> +<table class='summary'><tr><th></th><th style='text-align:center;'>Severity</th><th style='text-align:center;'>Count</th></tr><tr><th>Added Symbols</th><td>-</td><td>0</td></tr> +<tr><th>Removed Symbols</th><td>High</td><td>0</td></tr> +<tr><th rowspan='3'>Problems with<br/>Data Types</th><td>High</td><td>0</td></tr> +<tr><td>Medium</td><td>0</td></tr> +<tr><td>Low</td><td>0</td></tr> +<tr><th rowspan='3'>Problems with<br/>Symbols</th><td>High</td><td>0</td></tr> +<tr><td>Medium</td><td>0</td></tr> +<tr><td>Low</td><td>0</td></tr> +<tr><th>Problems with<br/>Constants</th><td>Low</td><td>0</td></tr> +</table> + +<a name='Headers'></a><h2>Header Files <span class='gray'> 1 </span></h2><hr/> +<div class='h_list'> +zck.h<br/> +</div> +<br/><a class='top_ref' href='#Top'>to the top</a><br/> +<a name='Sources'></a><h2>Source Files <span class='gray'> 9 </span></h2><hr/> +<div class='h_list'> +comp.c<br/> +dl.c<br/> +error.c<br/> +hash.c<br/> +header.c<br/> +index_read.c<br/> +log.c<br/> +range.c<br/> +zck.c<br/> +</div> +<br/><a class='top_ref' href='#Top'>to the top</a><br/> +<a name='Libs'></a><h2>Objects <span class='gray'> 1 </span></h2><hr/> +<div class='lib_list'> +libzck.so.1.1.3<br/> +</div> +<br/><a class='top_ref' href='#Top'>to the top</a><br/> +<br/><br/><br/></div><hr/> +<div class='footer' align='right'><i>Generated by <a href='https://github.com/lvc/abi-compliance-checker'>ABI Compliance Checker</a> 2.3  </i> +</div> +<br/> + +</body></html> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zchunk-1.1.0/test/copy_chunks.c new/zchunk-1.1.4/test/copy_chunks.c --- old/zchunk-1.1.0/test/copy_chunks.c 2019-03-23 23:22:50.000000000 +0100 +++ new/zchunk-1.1.4/test/copy_chunks.c 2019-11-13 18:19:40.000000000 +0100 @@ -49,7 +49,7 @@ perror("Unable to open LICENSE.header.new.nodict.fodt.zck for reading"); exit(1); } - int tgt = open(base_name, O_RDWR | O_CREAT, 0644); + int tgt = open(base_name, O_RDWR | O_CREAT, 0666); if(tgt < 0) { perror("Unable to open LICENSE.header.new.nodict.fodt.zck for writing"); exit(1);
