Browse Source

* source/files : fix on file gone for a long time

master
Alex 'AdUser' Z 6 months ago
parent
commit
f69b02612e
  1. 3
      src/sources/files.c

3
src/sources/files.c

@ -215,7 +215,8 @@ next(cfg_t *cfg, char *buf, size_t bufsize, bool reset) {
for (f2b_file_t *file = cfg->current; file != NULL; file = file->next) {
if (file_rotated(cfg, file))
file_close(file);
if (file->fd == NULL && !file_open(file, NULL)) {
if (file->fd == NULL) {
if (!file_open(file, NULL))
log_msg(cfg, error, "can't open file: %s", file->path);
continue;
}

Loading…
Cancel
Save