diff options
| author | root <root> | 2006-09-29 19:43:01 +0000 | 
|---|---|---|
| committer | root <root> | 2006-09-29 19:43:01 +0000 | 
| commit | b2ac61b790bc3d82507d2798fb084deb18fc4640 (patch) | |
| tree | a79e47808639e8ab8c0277745962d1ff86c724bd | |
| parent | db3ca576cd64d083c687287fe7ef78f52bc4caeb (diff) | |
*** empty log message ***
| -rw-r--r-- | Changes | 2 | ||||
| -rw-r--r-- | lzf.c | 2 | 
2 files changed, 3 insertions, 1 deletions
| @@ -1,4 +1,6 @@ +	- remove bogus while after for { }, reported by oesi. +  1.7  Wed Sep 27 17:29:15 CEST 2006  	- remove bogus broken horrific "unlzf" patch by Scott Feeney,            note to self: never accept well-meant patches. @@ -125,7 +125,7 @@ static void compress (unsigned int blocksize)          fwrite (header, 3+2, 1, stdout);          fwrite (buff1, us, 1, stdout);        } -  } while (!feof (stdin)); +  }  }  static void decompress (void) | 
