aboutsummaryrefslogtreecommitdiffstats
path: root/src/aio_event.c
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2013-06-20 12:21:38 +0100
committerVsevolod Stakhov <vsevolod@highsecure.ru>2013-06-20 12:21:38 +0100
commit9a357fb2821fd418a02a7b9429c26875ee257556 (patch)
treef2a157727d553c7e9d76ec9195d7734d64b3fe14 /src/aio_event.c
parent6e9bcfeda6ec1fa63643629a72a0c707c53c26e0 (diff)
downloadrspamd-9a357fb2821fd418a02a7b9429c26875ee257556.tar.gz
rspamd-9a357fb2821fd418a02a7b9429c26875ee257556.zip
Fix portability on Solaris.
Diffstat (limited to 'src/aio_event.c')
-rw-r--r--src/aio_event.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aio_event.c b/src/aio_event.c
index 4f1bf95d4..60cd95295 100644
--- a/src/aio_event.c
+++ b/src/aio_event.c
@@ -179,7 +179,7 @@ struct aio_context {
aio_context_t io_ctx;
#elif defined(HAVE_AIO_H)
/* POSIX aio */
- struct event rtsigs[SIGRTMAX - SIGRTMIN];
+ struct event rtsigs[128];
#endif
};