Source-Changes-HG archive

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

[src/trunk]: src/sys/compat/svr4_32 as pointed out by riastradh@, i'll let th...



details:   https://anonhg.NetBSD.org/src/rev/f54e4168b1b5
branches:  trunk
changeset: 366572:f54e4168b1b5
user:      mrg <mrg%NetBSD.org@localhost>
date:      Mon Sep 03 07:14:18 2018 +0000

description:
as pointed out by riastradh@, i'll let this diff speak for itself:

 static const struct fileops svr4_32_netops = {
-       .fo_read = "svr4_32_net",
+       .fo_name = "svr4_32_net",
        .fo_read = soo_read,

diffstat:

 sys/compat/svr4_32/svr4_32_net.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 2d4c32952c7f -r f54e4168b1b5 sys/compat/svr4_32/svr4_32_net.c
--- a/sys/compat/svr4_32/svr4_32_net.c  Mon Sep 03 04:10:20 2018 +0000
+++ b/sys/compat/svr4_32/svr4_32_net.c  Mon Sep 03 07:14:18 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: svr4_32_net.c,v 1.23 2017/11/30 20:25:54 christos Exp $         */
+/*     $NetBSD: svr4_32_net.c,v 1.24 2018/09/03 07:14:18 mrg Exp $      */
 
 /*-
  * Copyright (c) 1994, 2008, 2009 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: svr4_32_net.c,v 1.23 2017/11/30 20:25:54 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: svr4_32_net.c,v 1.24 2018/09/03 07:14:18 mrg Exp $");
 
 #define COMPAT_SVR4 1
 
@@ -95,7 +95,7 @@
 int svr4_ptm_alloc(struct proc *);
 
 static const struct fileops svr4_32_netops = {
-       .fo_read = "svr4_32_net",
+       .fo_name = "svr4_32_net",
        .fo_read = soo_read,
        .fo_write = soo_write,
        .fo_ioctl = soo_ioctl,



Home | Main Index | Thread Index | Old Index