Index: srtp/crypto/test/env.c |
diff --git a/srtp/crypto/test/env.c b/srtp/crypto/test/env.c |
index 37a6e2731b5436b3c6397cb9b1cc0a930b4a021c..6cc0f958fd325b6e9ca5e12704ef113b9a3b8549 100644 |
--- a/srtp/crypto/test/env.c |
+++ b/srtp/crypto/test/env.c |
@@ -49,7 +49,9 @@ |
int |
main(void) { |
int err_count = 0; |
+#ifndef OPENSSL |
char *str; |
+#endif |
#ifdef WORDS_BIGENDIAN |
printf("CPU set to big-endian\t\t\t(WORDS_BIGENDIAN == 1)\n"); |
@@ -80,6 +82,7 @@ main(void) { |
printf("using stdout for error reporting\t(ERR_REPORTING_STDOUT == 1)\n"); |
#endif |
+#ifndef OPENSSL |
#ifdef DEV_URANDOM |
str = DEV_URANDOM; |
#else |
@@ -90,6 +93,7 @@ main(void) { |
if (strcmp("", str) == 0) { |
err_count++; |
} |
+#endif |
if (err_count) |
printf("warning: configuration is probably in error " |