1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-12-01 22:51:45 +02:00

Fix lint errors

This commit is contained in:
Henry Jenkins
2019-06-23 20:41:23 +01:00
parent 411adf6f21
commit d24aacdb5c
4 changed files with 55 additions and 41 deletions

View File

@@ -454,7 +454,7 @@ func parseSignatureKey(o *Options, msgs []string) []string {
return append(msgs, "unsupported signature hash algorithm: "+
o.SignatureKey)
}
o.signatureData = &SignatureData{hash, secretKey}
o.signatureData = &SignatureData{hash: hash, key: secretKey}
return msgs
}