summaryrefslogtreecommitdiffstats
path: root/lzip.h
diff options
context:
space:
mode:
authorDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 07:48:29 +0000
committerDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 07:48:29 +0000
commit5fee2f90f3d2bde22239938ee0ec6c381b1ad91f (patch)
tree5f818a82f05cd87820abe14084090d803837c64d /lzip.h
parentAdding debian version 1.8-1. (diff)
downloadlzip-5fee2f90f3d2bde22239938ee0ec6c381b1ad91f.tar.xz
lzip-5fee2f90f3d2bde22239938ee0ec6c381b1ad91f.zip
Merging upstream version 1.9.
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'lzip.h')
-rw-r--r--lzip.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lzip.h b/lzip.h
index 0a2293d..0590665 100644
--- a/lzip.h
+++ b/lzip.h
@@ -1,5 +1,5 @@
/* Lzip - A data compressor based on the LZMA algorithm
- Copyright (C) 2008, 2009 Antonio Diaz Diaz.
+ Copyright (C) 2008, 2009, 2010 Antonio Diaz Diaz.
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
@@ -74,6 +74,7 @@ const int max_len_symbols = len_low_symbols + len_mid_symbols + len_high_symbols
const int min_match_len = 2; // must be 2
const int max_match_len = min_match_len + max_len_symbols - 1; // 273
+const int min_match_len_limit = 5;
const int max_dis_states = 4;