]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Common header file change not directly applicable to open-vm-tools.
authorOliver Kurth <okurth@vmware.com>
Wed, 8 May 2019 22:27:19 +0000 (15:27 -0700)
committerOliver Kurth <okurth@vmware.com>
Wed, 8 May 2019 22:27:19 +0000 (15:27 -0700)
open-vm-tools/lib/include/sha1.h

index d3ce49944ea437ee4a3a10b207aa960142a08ff9..742fa72b08b1efbbc2c066a60128b5878fc1361d 100644 (file)
@@ -1,5 +1,5 @@
 /*********************************************************
- * Copyright (C) 1998-2017 VMware, Inc. All rights reserved.
+ * Copyright (C) 1998-2019 VMware, Inc. All rights reserved.
  *
  * This program is free software; you can redistribute it and/or modify it
  * under the terms of the GNU Lesser General Public License as published
@@ -143,13 +143,13 @@ void SHA1MultiBuffer(uint32 numBuffers,
 #if !defined VMKBOOT && !defined VMKERNEL
 
 /* OpenSSL opaque type for hashing. Opaque as of openssl-1.1.0. */
-struct env_md_ctx_st;
+struct evp_md_ctx_st;
 
 typedef struct {
 #ifdef __APPLE__
    CC_SHA1_CTX cc_ctx;
 #else
-   struct env_md_ctx_st *md;  /* OpenSSL EVP_MD_CTX */
+   struct evp_md_ctx_st *md;  /* OpenSSL EVP_MD_CTX */
 #endif
 } CryptoSHA1_CTX;