summaryrefslogtreecommitdiff
blob: d566be15fe280587043149bdbfd251d074e3e67a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff -ur sbin/savecore/savecore.c sbin-gentoo/savecore/savecore.c
--- sbin/savecore/savecore.c	2005-02-26 02:21:50.000000000 +0100
+++ sbin-gentoo/savecore/savecore.c	2005-08-13 17:09:53.000000000 +0200
@@ -95,7 +95,7 @@
 static int checkfor, compress, clear, force, keep, verbose;	/* flags */
 static int nfound, nsaved, nerr;			/* statistics */
 
-extern FILE *zopen(const char *, const char *);
+extern FILE *gzopen(const char *, const char *);
 
 static void
 printheader(FILE *f, const struct kerneldumpheader *h, const char *device,
@@ -387,7 +387,7 @@
 	oumask = umask(S_IRWXG|S_IRWXO); /* Restrict access to the core file.*/
 	if (compress) {
 		sprintf(buf, "vmcore.%d.gz", bounds);
-		fp = zopen(buf, "w");
+		fp = gzopen(buf, "w");
 	} else {
 		sprintf(buf, "vmcore.%d", bounds);
 		fp = fopen(buf, "w");