Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions usr.sbin/pkg/pkg.c
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ verify_pubsignature(int fd_pkg, int fd_sig, struct repository *r)
}

/* Verify the signature. */
printf("Verifying signature with public key %s.a.. ", r->pubkey);
printf("Verifying signature with public key %s... ", r->pubkey);
if (pkgsign_verify_data(sctx, data, datasz, r->pubkey, NULL, 0, pk->sig,
pk->siglen) == false) {
fprintf(stderr, "Signature is not valid\n");
Expand Down Expand Up @@ -813,7 +813,7 @@ verify_signature(int fd_pkg, int fd_sig, struct repository *r)
}

if (pkgsign_new(sc->type, &sctx) != 0) {
fprintf(stderr, "Failed to fetch 'rsa' signer\n");
fprintf(stderr, "Failed to fetch %s signer\n", sc->type);
goto cleanup;
}

Expand Down
Loading