From 69f4bc75b904f88c843b30dea52e75492e3a509c Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Thu, 30 Jun 2016 15:01:40 -0400 Subject: [PATCH] fi_tostr: fix spelling error/typo Thanks to Jeff Hammond for identifying the issue. Fixes #2176. Signed-off-by: Jeff Squyres --- src/fi_tostr.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/fi_tostr.c b/src/fi_tostr.c index 8019056f592..cf62781f968 100644 --- a/src/fi_tostr.c +++ b/src/fi_tostr.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2014-2015 Intel Corp., Inc. All rights reserved. + * Copyright (c) 2016 Cisco Systems, Inc. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU @@ -445,7 +446,7 @@ static void fi_tostr_domain_attr(char *buf, const struct fi_domain_attr *attr, strcatf(buf, "%s%sdata_progress: ", prefix, TAB); fi_tostr_progress(buf, attr->data_progress); strcatf(buf, "\n"); - strcatf(buf, "%s%sresouce_mgmt: ", prefix, TAB); + strcatf(buf, "%s%sresource_mgmt: ", prefix, TAB); fi_tostr_resource_mgmt(buf, attr->resource_mgmt); strcatf(buf, "\n"); strcatf(buf, "%s%sav_type: ", prefix, TAB);