diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-02-12 20:49:33 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-02-12 20:49:33 +0000 |
commit | 66bebc21e2a2aead4393f98003986299f85ff425 (patch) | |
tree | 43dfa5722d3a6d89724eb8361d98b874b1eb6811 /contrib/libucl/ucl_internal.h | |
parent | 05d03bfcd69957c34af36fa65e44e602c489e46f (diff) | |
download | rspamd-66bebc21e2a2aead4393f98003986299f85ff425.tar.gz rspamd-66bebc21e2a2aead4393f98003986299f85ff425.zip |
[Minor] Treat EPERM specially
Issue: #1996
Diffstat (limited to 'contrib/libucl/ucl_internal.h')
-rw-r--r-- | contrib/libucl/ucl_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libucl/ucl_internal.h b/contrib/libucl/ucl_internal.h index 44a8fe70e..11b71de70 100644 --- a/contrib/libucl/ucl_internal.h +++ b/contrib/libucl/ucl_internal.h @@ -321,7 +321,7 @@ ucl_create_err (UT_string **err, const char *fmt, ...) } #ifdef UCL_FATAL_ERRORS - assert (0); + abort (); #endif } |