From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from g9t5008.houston.hpe.com (g9t5008.houston.hpe.com [15.241.48.72]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 3A05B1A1E46 for ; Wed, 12 Oct 2016 13:42:39 -0700 (PDT) Received: from arm-build-server.us.rdlabs.hpecorp.net (arm-build-server.us.rdlabs.hpecorp.net [16.84.24.54]) by g9t5008.houston.hpe.com (Postfix) with ESMTP id 670A455; Wed, 12 Oct 2016 20:42:38 +0000 (UTC) From: Thomas Palmer To: edk2-devel@lists.01.org Cc: jiaxin.wu@intel.com, joseph.shifflett@hpe.com, Thomas Palmer Date: Wed, 12 Oct 2016 15:42:36 -0500 Message-Id: <1476304956-6790-1-git-send-email-thomas.palmer@hpe.com> X-Mailer: git-send-email 2.7.4 Subject: [PATCH] [edk2-staging/HTTPS-TLS][PATCH]: CryptoPkg/TlsLib: Fix FILE_GUID X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Oct 2016 20:42:39 -0000 TlsLib's FILE_GUID is a duplicate of BaseCryptLib. Use a new unique guid instead Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Thomas Palmer --- CryptoPkg/Library/TlsLib/TlsLib.inf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CryptoPkg/Library/TlsLib/TlsLib.inf b/CryptoPkg/Library/TlsLib/TlsLib.inf index 6194e95..823e159 100644 --- a/CryptoPkg/Library/TlsLib/TlsLib.inf +++ b/CryptoPkg/Library/TlsLib/TlsLib.inf @@ -2,6 +2,7 @@ # SSL/TLS Wrapper Library Instance based on OpenSSL. # # Copyright (c) 2016, Intel Corporation. All rights reserved.
+# (C) Copyright 2016 Hewlett Packard Enterprise Development LP
# This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License # which accompanies this distribution. The full text of the license may be found at @@ -16,7 +17,7 @@ INF_VERSION = 0x00010005 BASE_NAME = TlsLib MODULE_UNI_FILE = TlsLib.uni - FILE_GUID = be3bb803-91b6-4da0-bd91-a8b21c18ca5d + FILE_GUID = CC729DC5-4E21-0B36-1A00-3A8E1B86A155 MODULE_TYPE = DXE_DRIVER VERSION_STRING = 1.0 LIBRARY_CLASS = TlsLib|DXE_DRIVER DXE_CORE UEFI_APPLICATION UEFI_DRIVER @@ -43,4 +44,4 @@ OpensslLib IntrinsicLib PrintLib - OpensslTlsLib \ No newline at end of file + OpensslTlsLib -- 2.7.4