From 2fb48fb46bbf1dda2d9660175291a8f873a4828f Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Wed, 26 Aug 2009 01:01:43 +0000 Subject: [PATCH] Added missing ENOATTR text. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32681 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/libroot/posix/string/strerror.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/system/libroot/posix/string/strerror.c b/src/system/libroot/posix/string/strerror.c index 7cd459d18f..60eed4708a 100644 --- a/src/system/libroot/posix/string/strerror.c +++ b/src/system/libroot/posix/string/strerror.c @@ -520,6 +520,8 @@ error_description(int error) return "STREAM ioctl() timeout"; case ETXTBSY: return "Text file busy"; + case ENOATTR: + return "No such attribute"; default: return NULL;