mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-26 09:42:25 +00:00
zlib_disable_compression() and zlib_huflookup() are unused outside this file.
Make them static. [originally from svn r2485]
This commit is contained in:
parent
bffb61b5ad
commit
dd8c09eeba
@ -610,7 +610,7 @@ void zlib_compress_cleanup(void *handle)
|
|||||||
* length adjustment (which is only valid for packets < 65536
|
* length adjustment (which is only valid for packets < 65536
|
||||||
* bytes, but that seems reasonable enough).
|
* bytes, but that seems reasonable enough).
|
||||||
*/
|
*/
|
||||||
int zlib_disable_compression(void *handle)
|
static int zlib_disable_compression(void *handle)
|
||||||
{
|
{
|
||||||
struct LZ77Context *ectx = (struct LZ77Context *)handle;
|
struct LZ77Context *ectx = (struct LZ77Context *)handle;
|
||||||
struct Outbuf *out = (struct Outbuf *) ectx->userdata;
|
struct Outbuf *out = (struct Outbuf *) ectx->userdata;
|
||||||
@ -974,7 +974,7 @@ void zlib_decompress_cleanup(void *handle)
|
|||||||
sfree(dctx);
|
sfree(dctx);
|
||||||
}
|
}
|
||||||
|
|
||||||
int zlib_huflookup(unsigned long *bitsp, int *nbitsp,
|
static int zlib_huflookup(unsigned long *bitsp, int *nbitsp,
|
||||||
struct zlib_table *tab)
|
struct zlib_table *tab)
|
||||||
{
|
{
|
||||||
unsigned long bits = *bitsp;
|
unsigned long bits = *bitsp;
|
||||||
|
Loading…
Reference in New Issue
Block a user