Fix heartbeat_test for -DOPENSSL_NO_HEARTBEATS
[openssl.git] / ssl / heartbeat_test.c
index a525d17f34065109b9e73d8110cbb424414e2f0d..c770e9d71853a6361e782dde2874ca0170dc6682 100644 (file)
@@ -44,6 +44,8 @@
 #include <stdlib.h>
 #include <string.h>
 
+#ifndef OPENSSL_NO_HEARTBEATS
+
 /* As per https://tools.ietf.org/html/rfc6520#section-4 */
 #define MIN_PADDING_SIZE       16
 
@@ -453,3 +455,11 @@ int main(int argc, char *argv[])
                }
        return EXIT_SUCCESS;
        }
+
+#else /* OPENSSL_NO_HEARTBEATS*/
+
+int main(int argc, char *argv[])
+       {
+               return EXIT_SUCCESS;
+       }
+#endif /* OPENSSL_NO_HEARTBEATS */