From fdc9e9a31fbbff48a4039e9b744c2b2be0a07178 Mon Sep 17 00:00:00 2001
From: "Christopher J. Morrone" <morrone2@llnl.gov>
Date: Thu, 7 Jul 2005 02:19:59 +0000
Subject: [PATCH] Search for the position-independant bulk_xfer flag in the
 network string

---
 src/plugins/switch/federation/switch_federation.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/plugins/switch/federation/switch_federation.c b/src/plugins/switch/federation/switch_federation.c
index 413509bb53b..e0e6cd72091 100644
--- a/src/plugins/switch/federation/switch_federation.c
+++ b/src/plugins/switch/federation/switch_federation.c
@@ -339,7 +339,8 @@ int switch_p_build_jobinfo(switch_jobinfo_t switch_job, char *nodelist,
 			      "nor sn_single");
 			return SLURM_ERROR;
 		}
-		if(network[strlen(network)-1] == '1')
+		if (strstr(network, "bulk_xfer")
+		    || strstr(network, "BULK_XFER"))
 			bulk_xfer = 1;
 		err = fed_build_jobinfo((fed_jobinfo_t *)switch_job, list,
 					nprocs,	cyclic_alloc, sn_all,
-- 
GitLab