mirror of https://github.com/acidanthera/audk.git
MdePkg: MTftp6: Correct #define value in Mtfp6.h
defined values of EFI_MTFTP6_ERRORCODE_ILLEGAL_OPERATION and EFI_MTFTP6_ERRORCODE_FILE_ALREADY_EXISTS are the same. This patch corrects the value of EFI_MTFTP6_ERRORCODE_ILLEGAL_OPERATION to 4. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hegde Nagaraj P <nagaraj-p.hegde@hpe.com> Reviewed-by: Ye Ting <ting.ye@intel.com> Reviewed-by: Sriram Subramanian <sriram-s@hpe.com> Reviewed-By: Wu Jiaxin <jiaxin.wu@intel.com> Reviewed-by: Fu Siyuan <siyuan.fu@intel.com>
This commit is contained in:
parent
0fbffbc05c
commit
d8d217c576
|
@ -4,6 +4,8 @@
|
||||||
multicast TFTP operations.
|
multicast TFTP operations.
|
||||||
|
|
||||||
Copyright (c) 2008 - 2011, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2008 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||||
|
(C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>
|
||||||
|
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
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
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -70,7 +72,7 @@ typedef struct _EFI_MTFTP6_TOKEN EFI_MTFTP6_TOKEN;
|
||||||
///
|
///
|
||||||
/// The MTFTPv6 operation was illegal.
|
/// The MTFTPv6 operation was illegal.
|
||||||
///
|
///
|
||||||
#define EFI_MTFTP6_ERRORCODE_ILLEGAL_OPERATION 6
|
#define EFI_MTFTP6_ERRORCODE_ILLEGAL_OPERATION 4
|
||||||
///
|
///
|
||||||
/// The transfer ID is unknown.
|
/// The transfer ID is unknown.
|
||||||
///
|
///
|
||||||
|
|
Loading…
Reference in New Issue