diff options
author | Collin Funk via Gnupg-devel <[email protected]> | 2025-08-06 04:16:14 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2025-08-13 06:07:05 +0000 |
commit | 5cee78a0362947c9d7ac0cc9ceee222f2297c882 (patch) | |
tree | d46224ab08f530a110220883d713ee41e2106fca | |
parent | dirmngr: Improve LDAP debug output. (diff) | |
download | gnupg-5cee78a0362947c9d7ac0cc9ceee222f2297c882.tar.gz gnupg-5cee78a0362947c9d7ac0cc9ceee222f2297c882.zip |
Fix typos in messages.
* agent/gpg-agent.c (map_supervised_sockets): Fix spelling of
--deprecated-supervised.
* g10/gpg.c (main): Fix spelling of --quick-set-expire.
* scd/command.c (hlp_checkpin): Fix spelling of modifying.
* g10/decrypt.c (decrypt_message): Fix spelling of mutually.
--
Signed-off-by: Collin Funk <[email protected]>
-rw-r--r-- | agent/gpg-agent.c | 2 | ||||
-rw-r--r-- | g10/decrypt.c | 2 | ||||
-rw-r--r-- | g10/gpg.c | 2 | ||||
-rw-r--r-- | scd/command.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/agent/gpg-agent.c b/agent/gpg-agent.c index ae1295977..3dcb6281b 100644 --- a/agent/gpg-agent.c +++ b/agent/gpg-agent.c @@ -782,7 +782,7 @@ map_supervised_sockets (gnupg_fd_t *r_fd, fd_count); if (fstat (3, &statbuf) == -1 && errno ==EBADF) log_fatal ("file descriptor 3 must be valid in" - " --depreacted-supervised mode" + " --deprecated-supervised mode" " if LISTEN_FDNAMES is not set\n"); *r_fd = 3; socket_name = gnupg_get_socket_name (3); diff --git a/g10/decrypt.c b/g10/decrypt.c index e232c188f..644bf2eba 100644 --- a/g10/decrypt.c +++ b/g10/decrypt.c @@ -107,7 +107,7 @@ decrypt_message (ctrl_t ctrl, const char *filename, strlist_t remusr) opt.outfile = NULL; if (ctrl->modify_recipients && (err || !dek) ) - log_error (_("modifiying the recipients is not possible: %s\n"), + log_error (_("modifying the recipients is not possible: %s\n"), err? gpg_strerror (err) : _("decryption failed")); else if (ctrl->modify_recipients) { @@ -5016,7 +5016,7 @@ main (int argc, char **argv) const char *x_fpr, *x_expire; if (argc < 2) - wrong_args ("--quick-set-exipre FINGERPRINT EXPIRE [SUBKEY-FPRS]"); + wrong_args ("--quick-set-expire FINGERPRINT EXPIRE [SUBKEY-FPRS]"); x_fpr = *argv++; argc--; x_expire = *argv++; argc--; keyedit_quick_set_expire (ctrl, x_fpr, x_expire, argv); diff --git a/scd/command.c b/scd/command.c index 792a347b4..b0a639dde 100644 --- a/scd/command.c +++ b/scd/command.c @@ -1766,7 +1766,7 @@ static const char hlp_checkpin[] = "\n" " For a definitive list, see the implementation in app-nks.c.\n" " Note that we call a PW2.* PIN a \"PUK\" despite that since TCOS\n" - " 3.0 they are technically alternative PINs used to mutally\n" + " 3.0 they are technically alternative PINs used to mutually\n" " unblock each other.\n" "\n" "For PKCS#15:\n" |