From dc5f3803215dc785f12dcea4f1159e379261a9a4 Mon Sep 17 00:00:00 2001
From: Danny Auble <da@llnl.gov>
Date: Thu, 3 Feb 2005 16:59:16 +0000
Subject: [PATCH] job mode will display all jobs in queue.

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

diff --git a/src/smap/job_functions.c b/src/smap/job_functions.c
index eed62d684a3..1d85e8a07f9 100644
--- a/src/smap/job_functions.c
+++ b/src/smap/job_functions.c
@@ -40,7 +40,7 @@ extern void get_job(void)
 
 	if (job_info_ptr) {
 		error_code = slurm_load_jobs(job_info_ptr->last_update,
-				&new_job_ptr, 0);
+				&new_job_ptr, SHOW_ALL);
 		if (error_code == SLURM_SUCCESS)
 			slurm_free_job_info_msg(job_info_ptr);
 		else if (slurm_get_errno() == SLURM_NO_CHANGE_IN_DATA) {
@@ -48,7 +48,7 @@ extern void get_job(void)
 			new_job_ptr = job_info_ptr;
 		}
 	} else
-		error_code = slurm_load_jobs((time_t) NULL, &new_job_ptr, 0);
+		error_code = slurm_load_jobs((time_t) NULL, &new_job_ptr, SHOW_ALL);
 
 	if (error_code) {
 		if (quiet_flag != 1) {
-- 
GitLab