diff --git a/src/smap/job_functions.c b/src/smap/job_functions.c
index eed62d684a3549a714a86d0285030c91a379c0ed..1d85e8a07f932373594b82db50d0439d038387ca 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) {