Skip to content

Commit

Permalink
[tls] Fix incorrectly duplicated error number
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Brown <mcb30@ipxe.org>
  • Loading branch information
mcb30 committed Mar 6, 2019
1 parent 272fe32 commit 799781f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/net/tls.c
Expand Up @@ -104,7 +104,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
"Invalid MAC" )
#define EIO_ALERT __einfo_error ( EINFO_EIO_ALERT )
#define EINFO_EIO_ALERT \
__einfo_uniqify ( EINFO_EINVAL, 0x01, \
__einfo_uniqify ( EINFO_EIO, 0x01, \
"Unknown alert level" )
#define ENOMEM_CONTEXT __einfo_error ( EINFO_ENOMEM_CONTEXT )
#define EINFO_ENOMEM_CONTEXT \
Expand Down

0 comments on commit 799781f

Please sign in to comment.