From fe3fbdec4250f20a5d8d0e2fccf5c8396c85ed60 Mon Sep 17 00:00:00 2001 From: Varun Shastry Date: Tue, 25 Sep 2012 20:25:08 +0530 Subject: Fixed some general typing errors. Eg: changed recieved to received Change-Id: I360fcb99c97c8a0222e373fee20ea2fccfb938db BUG: 860543 Signed-off-by: Varun Shastry Reviewed-on: http://review.gluster.org/3999 Tested-by: Gluster Build System Reviewed-by: Vijay Bellur --- xlators/storage/posix/src/posix-aio.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'xlators/storage') diff --git a/xlators/storage/posix/src/posix-aio.c b/xlators/storage/posix/src/posix-aio.c index ac0ce870506..f5c1b9891ad 100644 --- a/xlators/storage/posix/src/posix-aio.c +++ b/xlators/storage/posix/src/posix-aio.c @@ -433,7 +433,7 @@ posix_aio_init (xlator_t *this) ret = io_setup (POSIX_AIO_MAX_NR_EVENTS, &priv->ctxp); if ((ret == -1 && errno == ENOSYS) || ret == -ENOSYS) { gf_log (this->name, GF_LOG_WARNING, - "Linux AIO not availble at run-time." + "Linux AIO not available at run-time." " Continuing with synchronous IO"); ret = 0; goto out; @@ -502,7 +502,7 @@ int posix_aio_on (xlator_t *this) { gf_log (this->name, GF_LOG_INFO, - "Linux AIO not availble at build-time." + "Linux AIO not available at build-time." " Continuing with synchronous IO"); return 0; } @@ -511,7 +511,7 @@ int posix_aio_off (xlator_t *this) { gf_log (this->name, GF_LOG_INFO, - "Linux AIO not availble at build-time." + "Linux AIO not available at build-time." " Continuing with synchronous IO"); return 0; } -- cgit