crypto/x86_64cpuid.pl: fix typo in Knights Landing detection.
[openssl.git] / test / dhtest.c
index 618b84e7733b52929b5f245dd522344d5401e734..ccae3412d2a2f54ed04c9d7763029302da903d4f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
+ * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
  *
  * Licensed under the OpenSSL license (the "License").  You may not use
  * this file except in compliance with the License.  You can obtain a copy
@@ -23,7 +23,7 @@
 int main(int argc, char *argv[])
 {
     printf("No DH support\n");
-    return (0);
+    return EXIT_SUCCESS;
 }
 #else
 # include <openssl/dh.h>
@@ -31,7 +31,7 @@ int main(int argc, char *argv[])
 static int cb(int p, int n, BN_GENCB *arg);
 
 static const char rnd_seed[] =
-    "string to make the random number generator think it has entropy";
+    "string to make the random number generator think it has randomness";
 
 static int dh_test(void)
 {