document install-info fix in changelog
[debian/gzip] / bits.c
diff --git a/bits.c b/bits.c
index ee053dc081d5dc8566c5c286b1b955a3bde917c1..846b2f282f0a70bb1bb985c755c59876f07e0a10 100644 (file)
--- a/bits.c
+++ b/bits.c
@@ -1,11 +1,11 @@
 /* bits.c -- output variable-length bit strings
 
 /* bits.c -- output variable-length bit strings
 
-   Copyright (C) 1999 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2009-2013 Free Software Foundation, Inc.
    Copyright (C) 1992-1993 Jean-loup Gailly
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    Copyright (C) 1992-1993 Jean-loup Gailly
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2, or (at your option)
+   the Free Software Foundation; either version 3, or (at your option)
    any later version.
 
    This program is distributed in the hope that it will be useful,
    any later version.
 
    This program is distributed in the hope that it will be useful,
 #include <config.h>
 #include "tailor.h"
 #include "gzip.h"
 #include <config.h>
 #include "tailor.h"
 #include "gzip.h"
-#include "crypt.h"
 
 #ifdef DEBUG
 #  include <stdio.h>
 #endif
 
 
 #ifdef DEBUG
 #  include <stdio.h>
 #endif
 
-#ifdef RCSID
-static char rcsid[] = "$Id: bits.c,v 1.4 2006/11/20 08:40:33 eggert Exp $";
-#endif
-
 /* ===========================================================================
  * Local data used by the "bit string" routines.
  */
 /* ===========================================================================
  * Local data used by the "bit string" routines.
  */
@@ -98,7 +93,7 @@ local int bi_valid;
  * are always zero.
  */
 
  * are always zero.
  */
 
-int (*read_buf) OF((char *buf, unsigned size));
+int (*read_buf) (char *buf, unsigned size);
 /* Current input function. Set to mem_read for in-memory compression */
 
 #ifdef DEBUG
 /* Current input function. Set to mem_read for in-memory compression */
 
 #ifdef DEBUG
@@ -122,7 +117,7 @@ void bi_init (zipfile)
      * for in-memory compression.
      */
     if (zfile != NO_FILE) {
      * for in-memory compression.
      */
     if (zfile != NO_FILE) {
-       read_buf  = file_read;
+        read_buf  = file_read;
     }
 }
 
     }
 }
 
@@ -212,8 +207,8 @@ void copy_block(buf, len, header)
     while (len--) {
 #ifdef CRYPT
         int t;
     while (len--) {
 #ifdef CRYPT
         int t;
-       if (key) zencode(*buf, t);
+        if (key) zencode(*buf, t);
 #endif
 #endif
-       put_byte(*buf++);
+        put_byte(*buf++);
     }
 }
     }
 }