From 453b58eda7e347076a7df00ce9d15bb0e92f6d66 Mon Sep 17 00:00:00 2001 From: Masami Hiramatsu Date: Wed, 30 Apr 2008 11:52:32 -0400 Subject: PR6008: Increase the limitation of the buffer size to 4095MB. --- main.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main.cxx') diff --git a/main.cxx b/main.cxx index 15016435..6546db11 100644 --- a/main.cxx +++ b/main.cxx @@ -482,9 +482,9 @@ main (int argc, char * const argv []) case 's': s.buffer_size = atoi (optarg); - if (s.buffer_size < 1 || s.buffer_size > 64) + if (s.buffer_size < 1 || s.buffer_size > 4095) { - cerr << "Invalid buffer size (should be 1-64)." << endl; + cerr << "Invalid buffer size (should be 1-4095)." << endl; usage (s, 1); } break; -- cgit