diff options
author | Michael Brown <mcb30@etherboot.org> | 2006-12-21 16:16:24 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2006-12-21 16:16:24 +0000 |
commit | 286db6ffa33b4c547052f94e820b34315f43d7b2 (patch) | |
tree | 3cfef7ef544cf34a67daaec5883e4b9c289ed4f5 /src/hci/strerror.c | |
parent | fbc7b4dfa871978d385f228458bdf793a93beaf3 (diff) | |
download | ipxe-286db6ffa33b4c547052f94e820b34315f43d7b2.tar.gz |
Print explicit error message on iSCSI boot failure, and add
"Permission denied" as an error text to strerror().
Diffstat (limited to 'src/hci/strerror.c')
-rw-r--r-- | src/hci/strerror.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hci/strerror.c b/src/hci/strerror.c index e84c852fc..b012ccc3c 100644 --- a/src/hci/strerror.c +++ b/src/hci/strerror.c @@ -57,3 +57,4 @@ struct errortab enoem __errortab = { ENOMEM, "Out of memory" }; struct errortab einval __errortab = { EINVAL, "Invalid argument" }; struct errortab enospc __errortab = { ENOSPC, "No space left on device" }; struct errortab eio __errortab = { EIO, "Input/output error" }; +struct errortab eacces __errortab = { EACCES, "Permission denied" }; |