summaryrefslogtreecommitdiffstats
path: root/src/hci/strerror.c
diff options
context:
space:
mode:
authorMichael Brown2007-01-12 20:14:01 +0100
committerMichael Brown2007-01-12 20:14:01 +0100
commit63386f445523c04b716b3c1451eef08696965974 (patch)
tree245316a3227ad35712010d7bc93735ff4fa0360e /src/hci/strerror.c
parentAdded isspace() and made strtoul() accept whitespace, as per POSIX. (diff)
downloadipxe-63386f445523c04b716b3c1451eef08696965974.tar.gz
ipxe-63386f445523c04b716b3c1451eef08696965974.tar.xz
ipxe-63386f445523c04b716b3c1451eef08696965974.zip
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 df2df6bc..c130d6ca 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" };