You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-freebsd/freebsd-rescue/files/freebsd-rescue-10.0-zlib.patch

23 lines
861 B

diff --git a/sbin/savecore/savecore.c b/sbin/savecore/savecore.c
index 13c0d43..1f258f3 100644
--- a/sbin/savecore/savecore.c
+++ b/sbin/savecore/savecore.c
@@ -92,7 +92,7 @@ static int checkfor, compress, clear, force, keep, verbose; /* flags */
static int nfound, nsaved, nerr; /* statistics */
static int maxdumps;
-extern FILE *zopen(const char *, const char *);
+extern FILE *gzopen(const char *, const char *);
static sig_atomic_t got_siginfo;
static void infohandler(int);
@@ -626,7 +626,7 @@ DoFile(const char *savedir, const char *device)
if (compress) {
snprintf(corename, sizeof(corename), "%s.%d.gz",
istextdump ? "textdump.tar" : "vmcore", bounds);
- fp = zopen(corename, "w");
+ fp = gzopen(corename, "w");
} else {
snprintf(corename, sizeof(corename), "%s.%d",
istextdump ? "textdump.tar" : "vmcore", bounds);