From a7f965ca0e9193e6855f2d1f9b7cdedc6ad7bf83 Mon Sep 17 00:00:00 2001 From: yangsheng Date: Mon, 2 Mar 2009 06:21:55 +0000 Subject: [PATCH] Branch b1_6 b=17954 i=bobijam, deen Coverity fixes. Author: Jim Garlick(LLNL) --- lnet/lnet/api-ni.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lnet/lnet/api-ni.c b/lnet/lnet/api-ni.c index 998b1b3..6992f88 100644 --- a/lnet/lnet/api-ni.c +++ b/lnet/lnet/api-ni.c @@ -100,13 +100,13 @@ lnet_get_portals_compatibility(void) } if (!strcmp(portals_compatibility, "weak")) { - return 1; LCONSOLE_WARN("Starting in weak portals-compatible mode\n"); + return 1; } if (!strcmp(portals_compatibility, "strong")) { - return 2; LCONSOLE_WARN("Starting in strong portals-compatible mode\n"); + return 2; } LCONSOLE_ERROR_MSG(0x102, "portals_compatibility=\"%s\" not supported\n", -- 1.8.3.1