From 39e3ab28f7d0a720506ea555715c0d34c0aa841d Mon Sep 17 00:00:00 2001
From: Danny Auble <da@llnl.gov>
Date: Mon, 9 Oct 2006 20:59:22 +0000
Subject: [PATCH] fix to make an error not happen if there are no steps
 underneith the sent message

---
 src/common/slurm_protocol_api.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/common/slurm_protocol_api.c b/src/common/slurm_protocol_api.c
index d3bc0f027a3..333dfe1a60d 100644
--- a/src/common/slurm_protocol_api.c
+++ b/src/common/slurm_protocol_api.c
@@ -914,7 +914,7 @@ List slurm_receive_msgs(slurm_fd fd, int steps, int timeout)
 	Buf buffer;
 	ret_data_info_t *ret_data_info = NULL;
 	List ret_list = NULL;
-	int orig_timeout = 0;
+	int orig_timeout = timeout;
 
 	xassert(fd >= 0);
 
@@ -1069,7 +1069,7 @@ int slurm_receive_and_forward_msgs(slurm_fd fd, slurm_addr *orig_addr,
 	void *auth_cred = NULL;
 	Buf buffer;
 	ret_data_info_t *ret_data_info = NULL;
-	int orig_timeout = 0;
+	int orig_timeout = timeout;
 
 	xassert(fd >= 0);
 
-- 
GitLab