From 6951976bc46afd876f8bd3718cc47aeeef3f4ccb Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Mon, 7 Oct 2013 15:43:43 +0000 Subject: [PATCH] Update struct member name - this is why we put such things in the trunk before moving them to a branch, especially when coming from outside :-) Refs trac:3830 This commit was SVN r29390. The following Trac tickets were found above: Ticket 3830 --> https://svn.open-mpi.org/trac/ompi/ticket/3830 --- opal/mca/pstat/linux/pstat_linux_module.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/opal/mca/pstat/linux/pstat_linux_module.c b/opal/mca/pstat/linux/pstat_linux_module.c index cfbbf3fee4..d511ff1684 100644 --- a/opal/mca/pstat/linux/pstat_linux_module.c +++ b/opal/mca/pstat/linux/pstat_linux_module.c @@ -11,6 +11,7 @@ * All rights reserved. * Copyright (c) 2006-2007 Cisco Systems, Inc. All rights reserved. * Copyright (c) 2013 Los Alamos National Security, LLC. All rights reserved. + * Copyright (c) 2013 Intel, Inc. All rights reserved. * * $COPYRIGHT$ * @@ -436,7 +437,7 @@ static int query(pid_t pid, } /* pack the ones of interest into the struct */ ns = OBJ_NEW(opal_netstats_t); - ns->interface = strdup(dptr); + ns->net_interface = strdup(dptr); ns->num_bytes_recvd = strtoul(fields[0], NULL, 10); ns->num_packets_recvd = strtoul(fields[1], NULL, 10); ns->num_recv_errs = strtoul(fields[2], NULL, 10);