diff options
Diffstat (limited to 'lib/libstand/gzipfs.c')
-rw-r--r-- | lib/libstand/gzipfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libstand/gzipfs.c b/lib/libstand/gzipfs.c index 59034ff..00c8f8f 100644 --- a/lib/libstand/gzipfs.c +++ b/lib/libstand/gzipfs.c @@ -175,7 +175,7 @@ zf_open(const char *fname, struct open_file *f) /* If the name already ends in .gz or .bz2, ignore it */ if ((cp = strrchr(fname, '.')) && (!strcmp(cp, ".gz") - || !strcmp(cp, ".bz2"))) + || !strcmp(cp, ".bz2") || !strcmp(cp, ".split"))) return(ENOENT); /* Construct new name */ |