diff options
author | Sebastian Rasmussen <sebras@gmail.com> | 2013-11-06 16:29:03 +0100 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2013-11-11 16:12:45 +0100 |
commit | b0d50099bbf6d5630dcb674f4a857d54857926f8 (patch) | |
tree | 09c2f035d7c12dcdac8c4f457e6d03698aedb3f2 | |
parent | f8e90a600b2f52d2e56b1cd174fbe259d2021097 (diff) | |
download | mupdf-b0d50099bbf6d5630dcb674f4a857d54857926f8.tar.xz |
Fix error message typo
-rw-r--r-- | source/pdf/pdf-pkcs7.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pdf/pdf-pkcs7.c b/source/pdf/pdf-pkcs7.c index 4f770569..2f2a3524 100644 --- a/source/pdf/pdf-pkcs7.c +++ b/source/pdf/pdf-pkcs7.c @@ -746,7 +746,7 @@ void pdf_sign_signature(pdf_document *doc, pdf_widget *widget, const char *sigfi dn = pdf_signer_designated_name(signer); fzbuf = fz_new_buffer(ctx, 256); if (!dn->cn) - fz_throw(ctx, FZ_ERROR_GENERIC, "Certificat has no common name"); + fz_throw(ctx, FZ_ERROR_GENERIC, "Certificate has no common name"); fz_buffer_printf(ctx, fzbuf, "cn=%s", dn->cn); |