aboutsummaryrefslogtreecommitdiffstats
path: root/agent/gpg-agent.c
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <[email protected]>2016-10-28 19:06:11 +0000
committerJustus Winter <[email protected]>2016-11-02 11:53:58 +0000
commit68b59bbc42ba9ec69496758743924d54a95742f0 (patch)
tree95f7c6c246224aef77477049285a0ff6fd2b552d /agent/gpg-agent.c
parentg10,w32: Fix build on Windows. (diff)
downloadgnupg-68b59bbc42ba9ec69496758743924d54a95742f0.tar.gz
gnupg-68b59bbc42ba9ec69496758743924d54a95742f0.zip
Spelling: correct spelling of "passphrase".
There were several different variant spellings of "passphrase". This should fix them all for all English text. I did notice that po/it.po contains multiple instances of "passhprase", which also looks suspect to me, but i do not know Italian, so i did not try to correct it. Signed-off-by: Daniel Kahn Gillmor <[email protected]>
Diffstat (limited to 'agent/gpg-agent.c')
-rw-r--r--agent/gpg-agent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/agent/gpg-agent.c b/agent/gpg-agent.c
index 7294c690c..67ef321fc 100644
--- a/agent/gpg-agent.c
+++ b/agent/gpg-agent.c
@@ -789,7 +789,7 @@ parse_rereadable_options (ARGPARSE_ARGS *pargs, int reread)
opt.min_passphrase_nonalpha = MIN_PASSPHRASE_NONALPHA;
opt.check_passphrase_pattern = NULL;
opt.max_passphrase_days = MAX_PASSPHRASE_DAYS;
- opt.enable_passhrase_history = 0;
+ opt.enable_passphrase_history = 0;
opt.ignore_cache_for_signing = 0;
opt.allow_mark_trusted = 1;
opt.allow_external_cache = 1;
@@ -856,7 +856,7 @@ parse_rereadable_options (ARGPARSE_ARGS *pargs, int reread)
opt.max_passphrase_days = pargs->r.ret_ulong;
break;
case oEnablePassphraseHistory:
- opt.enable_passhrase_history = 1;
+ opt.enable_passphrase_history = 1;
break;
case oIgnoreCacheForSigning: opt.ignore_cache_for_signing = 1; break;