Index: srtp/crypto/test/env.c |
=================================================================== |
--- srtp/crypto/test/env.c (revision 294174) |
+++ srtp/crypto/test/env.c (working copy) |
@@ -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 @@ |
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 @@ |
if (strcmp("", str) == 0) { |
err_count++; |
} |
+#endif |
if (err_count) |
printf("warning: configuration is probably in error " |