summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRahul <rahul@gluster.com>2011-06-02 06:40:55 +0000
committerAnand Avati <avati@gluster.com>2011-06-08 09:58:03 -0700
commit8aa968cb955bdc502ebd2673a6632bd701097ffa (patch)
treef957a3b9d5bae84c0f529c0c90bfe3646e8fdbf4
parentdde84f682e76ff10d92156cec205b64ed55d4c32 (diff)
Fixed improper output when 'min-file-size' is more than 'max-file-size' in volume set
Signed-off-by: Rahul <rahul@gluster.com> Signed-off-by: Anand Avati <avati@gluster.com> 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
-rw-r--r--xlators/performance/io-cache/src/io-cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/performance/io-cache/src/io-cache.c b/xlators/performance/io-cache/src/io-cache.c
index d4307dc085f..cc2565ba214 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;
}