aboutsummaryrefslogtreecommitdiff
path: root/src/hci/strerror.c
diff options
context:
space:
mode:
authorMichael Brown <mcb30@etherboot.org>2007-01-12 19:14:01 +0000
committerMichael Brown <mcb30@etherboot.org>2007-01-12 19:14:01 +0000
commit63386f445523c04b716b3c1451eef08696965974 (patch)
tree245316a3227ad35712010d7bc93735ff4fa0360e /src/hci/strerror.c
parentca3db0bf111f57cddba99872ae3153253e446f4a (diff)
downloadipxe-63386f445523c04b716b3c1451eef08696965974.zip
ipxe-63386f445523c04b716b3c1451eef08696965974.tar.gz
ipxe-63386f445523c04b716b3c1451eef08696965974.tar.bz2
Added ENOENT, since HTTP 404 translates to it
Diffstat (limited to 'src/hci/strerror.c')
-rw-r--r--src/hci/strerror.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hci/strerror.c b/src/hci/strerror.c
index df2df6b..c130d6c 100644
--- a/src/hci/strerror.c
+++ b/src/hci/strerror.c
@@ -61,3 +61,4 @@ 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" };
+struct errortab enoent __errortab = { ENOENT, "File not found" };