]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
zlib_disable_compression() and zlib_huflookup() are unused outside this file.
authorBen Harris <bjh21@bjh21.me.uk>
Sun, 5 Jan 2003 23:36:53 +0000 (23:36 +0000)
committerBen Harris <bjh21@bjh21.me.uk>
Sun, 5 Jan 2003 23:36:53 +0000 (23:36 +0000)
Make them static.

[originally from svn r2485]

sshzlib.c

index 58069b60a8d6025efb605f047848a0cd14181e7a..d652d5c894e82b534ac7b785c090502b579cbdc4 100644 (file)
--- a/sshzlib.c
+++ b/sshzlib.c
@@ -610,7 +610,7 @@ void zlib_compress_cleanup(void *handle)
  * length adjustment (which is only valid for packets < 65536
  * 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 Outbuf *out = (struct Outbuf *) ectx->userdata;
@@ -974,7 +974,7 @@ void zlib_decompress_cleanup(void *handle)
     sfree(dctx);
 }
 
-int zlib_huflookup(unsigned long *bitsp, int *nbitsp,
+static int zlib_huflookup(unsigned long *bitsp, int *nbitsp,
                   struct zlib_table *tab)
 {
     unsigned long bits = *bitsp;