Skip to content

Commit

Permalink
fix: remove include and define, no longer used
Browse files Browse the repository at this point in the history
  • Loading branch information
itkovian committed Nov 19, 2024
1 parent 961bf2d commit dcbf18d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/slurmd/slurmd/req.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,8 @@
\*****************************************************************************/

#include "config.h"
#include <stdint.h>

#define _GNU_SOURCE /* for setresuid() */
#define __USE_XOPEN_EXTENDED

#include <ctype.h>
#include <fcntl.h>
Expand Down Expand Up @@ -2542,7 +2540,7 @@ static void _rpc_prolog(slurm_msg_t *msg)
job_env.uid = req->uid;
job_env.gid = req->gid;

rc = run_prolog(&job_env, req->cred);
rc = run_prolog(&job_env, req->cred);
_free_job_env(&job_env);
if (rc) {
int term_sig = 0, exit_status = 0;
Expand Down

0 comments on commit dcbf18d

Please sign in to comment.