Fix compiling warnings in example code
authorPaul Yang <yang.yang@baishancloud.com>
Mon, 8 Oct 2018 08:36:49 +0000 (16:36 +0800)
committerPaul Yang <yang.yang@baishancloud.com>
Thu, 11 Oct 2018 03:17:36 +0000 (11:17 +0800)
The example code in EVP_DigestInit.pod generates warnings if users try
to compile it.

[skip ci]

Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/7362)

doc/man3/EVP_DigestInit.pod

index 0fedd17ce6c6c193603e3bac4aef38c7a5ba04f9..5ecbcc5e89925a3776c06ac4546dac48630658fa 100644 (file)
@@ -310,16 +310,17 @@ This example digests the data "Test Message\n" and "Hello World\n", using the
 digest name passed on the command line.
 
  #include <stdio.h>
+ #include <string.h>
  #include <openssl/evp.h>
 
- main(int argc, char *argv[])
int main(int argc, char *argv[])
  {
      EVP_MD_CTX *mdctx;
      const EVP_MD *md;
      char mess1[] = "Test Message\n";
      char mess2[] = "Hello World\n";
      unsigned char md_value[EVP_MAX_MD_SIZE];
-     int md_len, i;
+     unsigned int md_len, i;
 
      if (argv[1] == NULL) {
          printf("Usage: mdtest digestname\n");