From: Michael Brown Date: Fri, 12 Jan 2007 19:14:01 +0000 (+0000) Subject: Added ENOENT, since HTTP 404 translates to it X-Git-Tag: mcb-xen-demo~58 X-Git-Url: http://git.etherboot.org/people/xl0/gpxe.git/commitdiff_plain/63386f445523c04b716b3c1451eef08696965974?hp=ca3db0bf111f57cddba99872ae3153253e446f4a Added ENOENT, since HTTP 404 translates to it --- 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" };