diff options
-rw-r--r-- | source3/modules/vfs_aio_pthread.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source3/modules/vfs_aio_pthread.c b/source3/modules/vfs_aio_pthread.c index b6d4e1ef35..aeacf2895e 100644 --- a/source3/modules/vfs_aio_pthread.c +++ b/source3/modules/vfs_aio_pthread.c @@ -61,10 +61,8 @@ static void aio_pthread_handle_completion(struct event_context *event_ctx, static int aio_get_num_threads(struct vfs_handle_struct *handle) { - return lp_parm_bool(SNUM(handle->conn), - "aio_pthread", - "aio num threads", - 100); + return lp_parm_int(SNUM(handle->conn), + "aio_pthread", "aio num threads", 100); } /************************************************************************ |