From: Oliver Kurth Date: Wed, 8 May 2019 22:27:19 +0000 (-0700) Subject: Common header file change not directly applicable to open-vm-tools. X-Git-Tag: stable-11.0.0~90 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8634350c330318eaf8f333c49f405e20b71ca813;p=thirdparty%2Fopen-vm-tools.git Common header file change not directly applicable to open-vm-tools. --- diff --git a/open-vm-tools/lib/include/sha1.h b/open-vm-tools/lib/include/sha1.h index d3ce49944..742fa72b0 100644 --- a/open-vm-tools/lib/include/sha1.h +++ b/open-vm-tools/lib/include/sha1.h @@ -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;