diff options
author | Michael Brown <mcb30@ipxe.org> | 2013-04-18 01:05:32 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2013-04-19 00:45:13 +0100 |
commit | e42bc3aa37698941be20cccde599af39c69227e2 (patch) | |
tree | 4e6232b003056ad3ae52281407ff73a24e56c803 /src/crypto/ocsp.c | |
parent | 0f7b3fa6f959d10c6fd0237d4c9f2accd6d85190 (diff) | |
download | ipxe-e42bc3aa37698941be20cccde599af39c69227e2.tar.gz |
[libc] Use __einfo() tuple as first argument to EUNIQ()
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/crypto/ocsp.c')
-rw-r--r-- | src/crypto/ocsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/ocsp.c b/src/crypto/ocsp.c index ab75dea35..185605b4a 100644 --- a/src/crypto/ocsp.c +++ b/src/crypto/ocsp.c @@ -84,7 +84,7 @@ FILE_LICENCE ( GPL2_OR_LATER ); __einfo_uniqify ( EINFO_EPROTO, OCSP_STATUS_UNAUTHORIZED, \ "Request unauthorized" ) #define EPROTO_STATUS( status ) \ - EUNIQ ( EPROTO, (status), EPROTO_MALFORMED_REQUEST, \ + EUNIQ ( EINFO_EPROTO, (status), EPROTO_MALFORMED_REQUEST, \ EPROTO_INTERNAL_ERROR, EPROTO_TRY_LATER, \ EPROTO_SIG_REQUIRED, EPROTO_UNAUTHORIZED ) |