From 8111756d0f7ff8b7e92cbb4ddb3833f72830e0b3 Mon Sep 17 00:00:00 2001 From: Humble Chirammal Date: Wed, 9 Jul 2014 00:54:48 +0530 Subject: libglusterfs: wrong function definition of synclock_destory(). synclock_destory() has been prototyped in syncop.h, how-ever synclock_destroy() is the actual function used in syncop.c. Correcting this function definition along with few typos. Change-Id: I35a818190c1d37c303279ca7a820f01895751bd9 BUG: 1075417 Signed-off-by: Humble Chirammal Reviewed-on: http://review.gluster.org/8266 Tested-by: Gluster Build System Reviewed-by: Raghavendra Talur Reviewed-by: soumya k Reviewed-by: Poornima G Reviewed-by: Vijay Bellur --- libglusterfs/src/client_t.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libglusterfs/src/client_t.c') diff --git a/libglusterfs/src/client_t.c b/libglusterfs/src/client_t.c index 6e09a372ea0..ada85b484bb 100644 --- a/libglusterfs/src/client_t.c +++ b/libglusterfs/src/client_t.c @@ -38,7 +38,7 @@ gf_client_chain_client_entries (cliententry_t *entries, uint32_t startidx, for (i = startidx; i < (endcount - 1); i++) entries[i].next_free = i + 1; - /* i has already been incremented upto the last entry. */ + /* i has already been incremented up to the last entry. */ entries[i].next_free = GF_CLIENTTABLE_END; return 0; -- cgit