aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_keywrap.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-03-16 12:01:01 -0400
committerJack Lloyd <[email protected]>2018-03-16 12:01:01 -0400
commit6c8ffb4d2ee1f762804fc8d6a90a3d1761462503 (patch)
tree2b88c8d5a809cca03f3f66e6c1a053b1b7fa338a /src/tests/test_keywrap.cpp
parentf787047f33d073036883b609d293656510ce8b16 (diff)
Catch exceptions by reference not value
Fixes a new warning in GCC 8
Diffstat (limited to 'src/tests/test_keywrap.cpp')
-rw-r--r--src/tests/test_keywrap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_keywrap.cpp b/src/tests/test_keywrap.cpp
index a5b216562..de63d8067 100644
--- a/src/tests/test_keywrap.cpp
+++ b/src/tests/test_keywrap.cpp
@@ -160,7 +160,7 @@ class NIST_Keywrap_Invalid_Tests final : public Text_Based_Test
result.test_failure("Was able to unwrap invalid keywrap input");
}
- catch(Botan::Integrity_Failure)
+ catch(Botan::Integrity_Failure&)
{
result.test_success("Rejected invalid input");
}