mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Use a local "compress" symbol corresponding to a variable in BSS,
rather than the one from libz, corresponding to a function, when linking statically. PR: bin/70392
This commit is contained in:
parent
cb33a8061a
commit
9f676d2ed6
1 changed files with 2 additions and 2 deletions
|
|
@ -88,8 +88,8 @@ __FBSDID("$FreeBSD$");
|
|||
/* The size of the buffer used for I/O. */
|
||||
#define BUFFERSIZE (1024*1024)
|
||||
|
||||
int checkfor, compress, clear, force, keep, verbose; /* flags */
|
||||
int nfound, nsaved, nerr; /* statistics */
|
||||
static int checkfor, compress, clear, force, keep, verbose; /* flags */
|
||||
static int nfound, nsaved, nerr; /* statistics */
|
||||
|
||||
extern FILE *zopen(const char *, const char *);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue