david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Added ENOENT, since HTTP 404 translates to it

This commit is contained in:
Michael Brown 2007-01-12 19:14:01 +00:00
parent ca3db0bf11
commit 63386f4455
1 changed files with 1 additions and 0 deletions

View File

@ -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" };