Skip to content

Commit

Permalink
[JENKINS-35081] Fixed the reverted logic of doCheckPasswordRequested.
Browse files Browse the repository at this point in the history
  • Loading branch information
ikedam committed Feb 12, 2017
1 parent 5f509f5 commit ac37f3f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -291,7 +291,7 @@ public String calcCheckPasswordRequestedUrl() {
@Restricted(NoExternalUse.class) // used by stapler/jelly
@SuppressWarnings("unused")
public String doCheckPasswordRequested(StaplerRequest req, @QueryParameter String userid) {
return Boolean.toString(!isAuthenticationRequired(userid.trim()));
return Boolean.toString(isAuthenticationRequired(userid.trim()));
}

/**
Expand Down

0 comments on commit ac37f3f

Please sign in to comment.