Module Name:    src
Committed By:   njoly
Date:           Sun Oct 19 16:47:51 UTC 2014

Modified Files:
        src/lib/libc/gen: utime.3

Log Message:
Do not use hard-coded values with ENAMETOOLONG, use symbolic constants
instead.


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/lib/libc/gen/utime.3

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libc/gen/utime.3
diff -u src/lib/libc/gen/utime.3:1.21 src/lib/libc/gen/utime.3:1.22
--- src/lib/libc/gen/utime.3:1.21	Thu Apr 29 17:07:00 2010
+++ src/lib/libc/gen/utime.3	Sun Oct 19 16:47:51 2014
@@ -1,4 +1,4 @@
-.\"	$NetBSD: utime.3,v 1.21 2010/04/29 17:07:00 jruoho Exp $
+.\"	$NetBSD: utime.3,v 1.22 2014/10/19 16:47:51 njoly Exp $
 .\"
 .\" Copyright (c) 1980, 1991, 1993
 .\"	The Regents of the University of California.  All rights reserved.
@@ -111,8 +111,12 @@ An I/O error occurred while reading or w
 .It Bq Er ELOOP
 Too many symbolic links were encountered in translating the pathname.
 .It Bq Er ENAMETOOLONG
-A component of a pathname exceeded 255 characters,
-or an entire path name exceeded 1023 characters.
+A component of a pathname exceeded
+.Brq Dv NAME_MAX
+characters,
+or an entire path name exceeded
+.Brq Dv PATH_MAX
+characters.
 .It Bq Er ENOENT
 The named file does not exist.
 .It Bq Er ENOTDIR

Reply via email to