From: Oliver Kurth Date: Fri, 15 Sep 2017 18:23:48 +0000 (-0700) Subject: lib/include/sha1.h: X-Git-Tag: stable-10.2.0~126 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d7a7fca30e47414827528163a4c96145dcd6043e;p=thirdparty%2Fopen-vm-tools.git lib/include/sha1.h: - Clean up - change unnamed struct to "struct SHA1-CTX" in SHA1_CTX typedef. --- diff --git a/open-vm-tools/lib/include/sha1.h b/open-vm-tools/lib/include/sha1.h index 2e0377926..542af305a 100644 --- a/open-vm-tools/lib/include/sha1.h +++ b/open-vm-tools/lib/include/sha1.h @@ -1,5 +1,5 @@ /********************************************************* - * Copyright (C) 1998-2016 VMware, Inc. All rights reserved. + * Copyright (C) 1998-2017 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 @@ -107,7 +107,7 @@ A million repetitions of "a" #define SHA1_HASH_LEN 20 -typedef struct { +typedef struct SHA1_CTX { uint32 state[5]; uint32 count[2]; unsigned char buffer[64];