Browse Source

Do not treat 'not found' as error in fuzzy

tags/1.1.0
Vsevolod Stakhov 8 years ago
parent
commit
77f3c9257e
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      src/plugins/fuzzy_check.c

+ 2
- 1
src/plugins/fuzzy_check.c View File

@@ -1151,13 +1151,14 @@ fuzzy_check_io_callback (gint fd, short what, void *arg)
symbol,
rep->flag);
}
else {
else if (rep->value != 0) {
msg_info_task (
"fuzzy check error for %s(%d): unknown error (%d)",
symbol,
rep->flag,
rep->value);
}
/* Not found */

ret = return_finished;
}

Loading…
Cancel
Save