Source-Changes-HG archive

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

[src/trunk]: src/sys/rump/librump/rumpvfs Underscores are sometimes overrated.



details:   https://anonhg.NetBSD.org/src/rev/3f2fa127ac1e
branches:  trunk
changeset: 769952:3f2fa127ac1e
user:      mbalmer <mbalmer%NetBSD.org@localhost>
date:      Tue Sep 27 14:24:52 2011 +0000

description:
Underscores are sometimes overrated.

diffstat:

 sys/rump/librump/rumpvfs/rumpfs.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r c7376444486b -r 3f2fa127ac1e sys/rump/librump/rumpvfs/rumpfs.c
--- a/sys/rump/librump/rumpvfs/rumpfs.c Tue Sep 27 13:53:26 2011 +0000
+++ b/sys/rump/librump/rumpvfs/rumpfs.c Tue Sep 27 14:24:52 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rumpfs.c,v 1.102 2011/09/27 13:53:26 christos Exp $    */
+/*     $NetBSD: rumpfs.c,v 1.103 2011/09/27 14:24:52 mbalmer Exp $     */
 
 /*
  * Copyright (c) 2009, 2010, 2011 Antti Kantee.  All Rights Reserved.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rumpfs.c,v 1.102 2011/09/27 13:53:26 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rumpfs.c,v 1.103 2011/09/27 14:24:52 mbalmer Exp $");
 
 #include <sys/param.h>
 #include <sys/atomic.h>
@@ -1500,7 +1500,7 @@
                *retval = 43; /* this one goes to 11 */
                return 0;
        case _PC_SYMLINK_MAX:
-               *retval =_MAXPATHLEN;
+               *retval = MAXPATHLEN;
                return 0;
        case _PC_2_SYMLINKS:
                *retval = 1;



Home | Main Index | Thread Index | Old Index