summaryrefslogtreecommitdiff
path: root/pkgtools/pkg_install/files/admin/audit.c
diff options
context:
space:
mode:
Diffstat (limited to 'pkgtools/pkg_install/files/admin/audit.c')
-rw-r--r--pkgtools/pkg_install/files/admin/audit.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/pkgtools/pkg_install/files/admin/audit.c b/pkgtools/pkg_install/files/admin/audit.c
index 2243686689f..484f19d9896 100644
--- a/pkgtools/pkg_install/files/admin/audit.c
+++ b/pkgtools/pkg_install/files/admin/audit.c
@@ -1,4 +1,4 @@
-/* $NetBSD: audit.c,v 1.8.2.3 2008/08/02 20:33:50 joerg Exp $ */
+/* $NetBSD: audit.c,v 1.8.2.4 2008/08/21 16:04:39 joerg Exp $ */
#if HAVE_CONFIG_H
#include "config.h"
@@ -8,7 +8,7 @@
#include <sys/cdefs.h>
#endif
#ifndef lint
-__RCSID("$NetBSD: audit.c,v 1.8.2.3 2008/08/02 20:33:50 joerg Exp $");
+__RCSID("$NetBSD: audit.c,v 1.8.2.4 2008/08/21 16:04:39 joerg Exp $");
#endif
/*-
@@ -355,18 +355,21 @@ fetch_pkg_vulnerabilities(int argc, char **argv)
if (verbose >= 2)
fprintf(stderr, "Fetching %s\n", pkg_vulnerabilities_url);
- f = fetchXGetURL(pkg_vulnerabilities_url, &st, "");
+ f = fetchXGetURL(pkg_vulnerabilities_url, &st, fetch_flags);
if (f == NULL)
- err(EXIT_FAILURE, "Could not fetch vulnerability file");
+ errx(EXIT_FAILURE, "Could not fetch vulnerability file: %s",
+ fetchLastErrString);
if (st.size > SSIZE_MAX - 1)
- err(EXIT_FAILURE, "pkg-vulnerabilities is too large");
+ errx(EXIT_FAILURE, "pkg-vulnerabilities is too large");
buf_len = st.size;
buf = xmalloc(buf_len + 1);
if (fetchIO_read(f, buf, buf_len) != buf_len)
- err(EXIT_FAILURE, "Failure during fetch of pkg-vulnerabilities");
+ errx(EXIT_FAILURE,
+ "Failure during fetch of pkg-vulnerabilities: %s",
+ fetchLastErrString);
buf[buf_len] = '\0';
if (decompress_buffer(buf, buf_len, &decompressed_input,