aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-06-09 10:48:03 -0400
committerJack Lloyd <[email protected]>2017-06-09 10:48:03 -0400
commite0fb6afcd1d6a658d1bb7c593aadaac39e35ebcb (patch)
tree08e6d06c26c37990da43014f6f049ed907afda3e /src
parent0e32198d21829c83eb27cfac34bc652e37f37f6c (diff)
Fix compile error in FFI when RSA disabled
[ci skip]
Diffstat (limited to 'src')
-rw-r--r--src/lib/ffi/ffi.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ffi/ffi.cpp b/src/lib/ffi/ffi.cpp
index 46755ff54..0ffb01b19 100644
--- a/src/lib/ffi/ffi.cpp
+++ b/src/lib/ffi/ffi.cpp
@@ -1482,7 +1482,7 @@ int botan_privkey_load_rsa(botan_privkey_t* key,
}
return -1;
#else
- BOTAN_UNUSED(key, p, q, e);
+ BOTAN_UNUSED(key, rsa_p, rsa_q, rsa_e);
return BOTAN_FFI_ERROR_NOT_IMPLEMENTED;
#endif
}