From 15a988b9bb5ec487e793dd9a52ef656d0fb4cb7c Mon Sep 17 00:00:00 2001 From: nkj Date: Fri, 28 Jan 2005 20:22:15 +0000 Subject: [PATCH] Fix for bug 5511 --- lustre/utils/lconf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/utils/lconf b/lustre/utils/lconf index 6de734a..ada1d8b 100755 --- a/lustre/utils/lconf +++ b/lustre/utils/lconf @@ -962,7 +962,7 @@ def sys_get_elan_position_file(): def sys_get_local_nid(net_type, wildcard, cluster_id): """Return the local nid.""" local = "" - if sys_get_elan_position_file(): + if sys_get_elan_position_file() and net_type == 'elan': local = sys_get_local_address('elan', '*', cluster_id) else: local = sys_get_local_address(net_type, wildcard, cluster_id) -- 1.8.3.1