File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1429,9 +1429,9 @@ func (p *processor) checkWellknownSecurityDNS(domain string) error {
1429
1429
}
1430
1430
1431
1431
// checkPGPKeys checks if the OpenPGP keys are available and valid, fetches
1432
- // the remotely keys and compares the fingerprints.
1433
- // As a result of these a respective error messages are passed to badPGP method
1434
- // in case of errors . It returns nil if all checks are passed.
1432
+ // the remote pubkeys and compares the fingerprints.
1433
+ // As a result of these checks respective error messages are passed
1434
+ // to badPGPs methods . It returns nil if all checks are passed.
1435
1435
func (p * processor ) checkPGPKeys (_ string ) error {
1436
1436
p .badPGPs .use ()
1437
1437
@@ -1464,7 +1464,7 @@ func (p *processor) checkPGPKeys(_ string) error {
1464
1464
for i := range keys {
1465
1465
key := & keys [i ]
1466
1466
if key .URL == nil {
1467
- p .badPGPs .error ("Missing URL for fingerprint %x." , key .Fingerprint )
1467
+ p .badPGPs .error ("Missing URL for fingerprint %x." , * key .Fingerprint )
1468
1468
continue
1469
1469
}
1470
1470
up , err := url .Parse (* key .URL )
You can’t perform that action at this time.
0 commit comments