[BACK]Return to crc32.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/Attic/crc32.c between version 1.1 and 1.2

version 1.1, 1999/09/26 20:53:35 version 1.2, 1999/10/01 18:18:40
Line 47 
Line 47 
   /*                                                                        */    /*                                                                        */
   /*  --------------------------------------------------------------------  */    /*  --------------------------------------------------------------------  */
   
 static unsigned long crc32_tab[] = {  static unsigned int crc32_tab[] = {
       0x00000000L, 0x77073096L, 0xee0e612cL, 0x990951baL, 0x076dc419L,        0x00000000L, 0x77073096L, 0xee0e612cL, 0x990951baL, 0x076dc419L,
       0x706af48fL, 0xe963a535L, 0x9e6495a3L, 0x0edb8832L, 0x79dcb8a4L,        0x706af48fL, 0xe963a535L, 0x9e6495a3L, 0x0edb8832L, 0x79dcb8a4L,
       0xe0d5e91eL, 0x97d2d988L, 0x09b64c2bL, 0x7eb17cbdL, 0xe7b82d07L,        0xe0d5e91eL, 0x97d2d988L, 0x09b64c2bL, 0x7eb17cbdL, 0xe7b82d07L,
Line 104 
Line 104 
   
 /* Return a 32-bit CRC of the contents of the buffer. */  /* Return a 32-bit CRC of the contents of the buffer. */
   
 unsigned long crc32(const unsigned char *s, unsigned int len)  unsigned int crc32(const unsigned char *s, unsigned int len)
 {  {
   unsigned int i;    unsigned int i;
   unsigned long crc32val;    unsigned int crc32val;
   
   crc32val = 0;    crc32val = 0;
   for (i = 0;  i < len;  i ++)    for (i = 0;  i < len;  i ++)

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2