diff options
author | lloyd <[email protected]> | 2012-02-20 21:13:16 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-02-20 21:13:16 +0000 |
commit | c00027b8114f49d7855d1a79b99048297dc50e34 (patch) | |
tree | 347613c9b9ecc5e53f674ea36ad55777e132290c /checks | |
parent | 49f333282279cc22fa8af7423447973b9dcfeee9 (diff) | |
parent | e5a1b8c4392b5383af133591cb9238fb8c1b4516 (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.cpp | 2 |
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; |