diff options
author | 2009-01-09 12:13:50 +0000 | |
---|---|---|
committer | 2009-01-09 12:13:50 +0000 | |
commit | 82a8dcafbb30bde31cbded094521103bf43ceb41 (patch) | |
tree | 8859b263d86cce51b675cde925c3270362dc661e /lib/libcrypto/fips_err.c | |
parent | Explain that any check pattern will work. (diff) | |
download | wireguard-openbsd-82a8dcafbb30bde31cbded094521103bf43ceb41.tar.xz wireguard-openbsd-82a8dcafbb30bde31cbded094521103bf43ceb41.zip |
import openssl-0.9.8j
Diffstat (limited to 'lib/libcrypto/fips_err.c')
-rw-r--r-- | lib/libcrypto/fips_err.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/libcrypto/fips_err.c b/lib/libcrypto/fips_err.c new file mode 100644 index 00000000000..09f11748f60 --- /dev/null +++ b/lib/libcrypto/fips_err.c @@ -0,0 +1,7 @@ +#include <openssl/opensslconf.h> + +#ifdef OPENSSL_FIPS +# include "fips_err.h" +#else +static void *dummy=&dummy; +#endif |