Skip to content
Snippets Groups Projects
Commit e3bea2a7 authored by Moe Jette's avatar Moe Jette
Browse files

Port 0.3.8 bug fixes to 0.4:

Don't strip binaries to avoid breaking TotalView
Fix Munge error retry logic bug
parent c327536d
No related branches found
No related tags found
No related merge requests found
...@@ -452,7 +452,7 @@ _decode_cred(char *m, slurm_auth_credential_t *c) ...@@ -452,7 +452,7 @@ _decode_cred(char *m, slurm_auth_credential_t *c)
error ("Munge decode failed: %s %s", error ("Munge decode failed: %s %s",
munge_ctx_strerror(ctx), retry ? "(retrying ...)": ""); munge_ctx_strerror(ctx), retry ? "(retrying ...)": "");
if ((e = EMUNGE_SOCKET) && retry--) if ((e == EMUNGE_SOCKET) && retry--)
goto again; goto again;
/* /*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment