diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -240,6 +240,10 @@ static int load_io_functions(struct settings const * const s, struct stream * co in->get = file_get_array; in->put = file_put_array; in->copy = stream_copy_range; + } else { /* if (s->format == list */ + in->get = file_get_list; + in->put = file_put_list; + in->copy = stream_copy_range; } } |