From 8aa968cb955bdc502ebd2673a6632bd701097ffa Mon Sep 17 00:00:00 2001 From: Rahul Date: Thu, 2 Jun 2011 06:40:55 +0000 Subject: Fixed improper output when 'min-file-size' is more than 'max-file-size' in volume set Signed-off-by: Rahul Signed-off-by: Anand Avati BUG: 2979 (Improper output when 'min-file-size' is more than 'max-file-size' in volume set) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2979 --- xlators/performance/io-cache/src/io-cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xlators/performance/io-cache/src/io-cache.c b/xlators/performance/io-cache/src/io-cache.c index d4307dc08..cc2565ba2 100644 --- a/xlators/performance/io-cache/src/io-cache.c +++ b/xlators/performance/io-cache/src/io-cache.c @@ -1632,7 +1632,7 @@ validate_options (xlator_t *this, dict_t *options, char **op_errstr) "greater than maximum size (%"PRIu64"). ", min_file_size, max_file_size); *op_errstr = gf_strdup ("Error, min-file-size greater" - "than max-file-size"); + " than max-file-size"); ret = -1; goto out; } -- cgit