aboutsummaryrefslogtreecommitdiffstats
path: root/checks
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-02-20 21:13:16 +0000
committerlloyd <[email protected]>2012-02-20 21:13:16 +0000
commitc00027b8114f49d7855d1a79b99048297dc50e34 (patch)
tree347613c9b9ecc5e53f674ea36ad55777e132290c /checks
parent49f333282279cc22fa8af7423447973b9dcfeee9 (diff)
parente5a1b8c4392b5383af133591cb9238fb8c1b4516 (diff)
propagate from branch 'net.randombit.botan' (head c247a55e7c0bcd239fcfc672139b59ef63d7ee84)
to branch 'net.randombit.botan.cxx11' (head 16d7756c6b8933d0d543ebdda9c7e8f4908a4a33)
Diffstat (limited to 'checks')
-rw-r--r--checks/check.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/checks/check.cpp b/checks/check.cpp
index 4fa1160ae..e47cc543b 100644
--- a/checks/check.cpp
+++ b/checks/check.cpp
@@ -178,7 +178,7 @@ int main(int argc, char* argv[])
if(opts.is_set("buf-size"))
{
buf_size = std::atoi(opts.value("buf-size").c_str());
- if(buf_size == 0 || buf_size > 64*1024)
+ if(buf_size == 0 || buf_size > 1024)
{
std::cout << "Invalid argument to --buf-size\n";
return 2;