aboutsummaryrefslogtreecommitdiffstats
path: root/common/asshelp.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2015-12-03 14:38:25 +0000
committerWerner Koch <[email protected]>2015-12-04 06:36:14 +0000
commit218a52787a87be6b7481a39f87d212d6ef594e97 (patch)
tree1db6e919102e4283ff82b154cad517a5a2bc215a /common/asshelp.c
parentscd: Fix for removing the prefix. (diff)
downloadgnupg-218a52787a87be6b7481a39f87d212d6ef594e97.tar.gz
gnupg-218a52787a87be6b7481a39f87d212d6ef594e97.zip
Do not translate messages printed with log_debug.
* common/asshelp.c (start_new_gpg_agent): Do not i18n string. (start_new_dirmngr): Ditto. * g10/mainproc.c (proc_encrypted): Ditto. Print only if debug is enabled. Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to '')
-rw-r--r--common/asshelp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/asshelp.c b/common/asshelp.c
index 44476074c..d33ffb556 100644
--- a/common/asshelp.c
+++ b/common/asshelp.c
@@ -498,7 +498,7 @@ start_new_gpg_agent (assuan_context_t *r_ctx,
}
if (debug && !did_success_msg)
- log_debug (_("connection to agent established\n"));
+ log_debug ("connection to agent established\n");
err = assuan_transact (ctx, "RESET",
NULL, NULL, NULL, NULL, NULL, NULL);
@@ -694,7 +694,7 @@ start_new_dirmngr (assuan_context_t *r_ctx,
}
if (debug && !did_success_msg)
- log_debug (_("connection to the dirmngr established\n"));
+ log_debug ("connection to the dirmngr established\n");
*r_ctx = ctx;
return 0;