aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gzlib.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gzlib.c b/gzlib.c
index b021372..c10fabb 100644
--- a/gzlib.c
+++ b/gzlib.c
@@ -162,8 +162,10 @@ local gzFile gz_open(path, fd, mode)
162 break; 162 break;
163 case 'F': 163 case 'F':
164 state->strategy = Z_FIXED; 164 state->strategy = Z_FIXED;
165 break;
165 case 'T': 166 case 'T':
166 state->direct = 1; 167 state->direct = 1;
168 break;
167 default: /* could consider as an error, but just ignore */ 169 default: /* could consider as an error, but just ignore */
168 ; 170 ;
169 } 171 }