Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src Add ENOATTR ("Attribute not found"). From FreeBSD.



details:   https://anonhg.NetBSD.org/src/rev/8facb8aa62d5
branches:  trunk
changeset: 572424:8facb8aa62d5
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Sun Jan 02 18:54:51 2005 +0000

description:
Add ENOATTR ("Attribute not found").  From FreeBSD.

diffstat:

 lib/libc/nls/C.msg |  2 ++
 sys/sys/errno.h    |  7 +++++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diffs (33 lines):

diff -r 42c74623b3d2 -r 8facb8aa62d5 lib/libc/nls/C.msg
--- a/lib/libc/nls/C.msg        Sun Jan 02 18:41:23 2005 +0000
+++ b/lib/libc/nls/C.msg        Sun Jan 02 18:54:51 2005 +0000
@@ -183,6 +183,8 @@
 91 Not a STREAM
 $ ETIME
 92 STREAM ioctl timeout
+$ ENOATTR
+93 Attribute not found
 $set 2
 $ SIGHUP
 1 Hangup
diff -r 42c74623b3d2 -r 8facb8aa62d5 sys/sys/errno.h
--- a/sys/sys/errno.h   Sun Jan 02 18:41:23 2005 +0000
+++ b/sys/sys/errno.h   Sun Jan 02 18:54:51 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: errno.h,v 1.35 2004/11/30 04:25:44 christos Exp $      */
+/*     $NetBSD: errno.h,v 1.36 2005/01/02 18:54:51 thorpej Exp $       */
 
 /*
  * Copyright (c) 1982, 1986, 1989, 1993
@@ -164,7 +164,10 @@
 #define ENOSTR         91              /* Not a STREAM */
 #define ETIME          92              /* STREAM ioctl timeout */
 
-#define        ELAST           92              /* Must equal largest errno */
+/* File system extended attribute errors */
+#define        ENOATTR         93              /* Attribute not found */
+
+#define        ELAST           93              /* Must equal largest errno */
 
 #ifdef _KERNEL
 /* pseudo-errors returned inside kernel to modify return to process */



Home | Main Index | Thread Index | Old Index