diff options
Diffstat (limited to 'common/smtppass.c')
-rw-r--r-- | common/smtppass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/smtppass.c b/common/smtppass.c index afdff03..4119335 100644 --- a/common/smtppass.c +++ b/common/smtppass.c @@ -727,7 +727,7 @@ cleanup: thread->fd = -1; sp_unlock(); - return (void*)(ret == 0 ? 0 : 1); + return (void*)(ret == 0 ? (size_t)0 : (size_t)1); } static int make_connections(spctx_t* ctx, int client) |