]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
lib/include/sha1.h:
authorOliver Kurth <okurth@vmware.com>
Fri, 15 Sep 2017 18:23:48 +0000 (11:23 -0700)
committerOliver Kurth <okurth@vmware.com>
Fri, 15 Sep 2017 18:23:48 +0000 (11:23 -0700)
  - Clean up - change unnamed struct to "struct SHA1-CTX" in SHA1_CTX typedef.

open-vm-tools/lib/include/sha1.h

index 2e03779269dd86cf79bfec212872cca28a4aaf10..542af305a846fd0222cebe2230b44f70acb855cf 100644 (file)
@@ -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];