aboutsummaryrefslogtreecommitdiffstats
path: root/g10/keyedit.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2016-05-04 09:04:43 +0000
committerWerner Koch <[email protected]>2016-05-04 09:05:13 +0000
commitd00625dae60f26617d2e1bd4f22c6b35a4e92c91 (patch)
treeffc9b4f3a1ced708523658675e1f19a318e8fb17 /g10/keyedit.c
parentbuild: Update config.{guess,sub} to 2016-04-02 and 2016-03-30. (diff)
downloadgnupg-d00625dae60f26617d2e1bd4f22c6b35a4e92c91.tar.gz
gnupg-d00625dae60f26617d2e1bd4f22c6b35a4e92c91.zip
Some minor string changes and fixed a printf format.
* g10/build-packet.c (notation_value_to_human_readable_string): Use %zu for size_t. Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to '')
-rw-r--r--g10/keyedit.c21
1 files changed, 14 insertions, 7 deletions
diff --git a/g10/keyedit.c b/g10/keyedit.c
index 3fa3a2c8a..546186495 100644
--- a/g10/keyedit.c
+++ b/g10/keyedit.c
@@ -449,8 +449,10 @@ check_all_keysigs (KBNODE kb, int only_selected, int only_selfsigs)
{
PKT_signature *sig = sigs[i]->pkt->pkt.signature;
- log_debug ("Signature appears multiple times, deleting duplicate:\n");
- log_debug (" sig: class 0x%x, issuer: %s, timestamp: %s (%lld), digest: %02x %02x\n",
+ log_debug ("Signature appears multiple times, "
+ "deleting duplicate:\n");
+ log_debug (" sig: class 0x%x, issuer: %s,"
+ " timestamp: %s (%lld), digest: %02x %02x\n",
sig->sig_class, keystr (sig->keyid),
isotimestamp (sig->timestamp),
(long long) sig->timestamp,
@@ -606,7 +608,8 @@ check_all_keysigs (KBNODE kb, int only_selected, int only_selfsigs)
{
if (DBG_PACKET && pending_desc)
log_debug ("%s", pending_desc);
- tty_printf (_("can't check signature with unsupported public-key algorithm (%d): %s.\n"),
+ tty_printf (_("can't check signature with unsupported"
+ " public-key algorithm (%d): %s.\n"),
sig->pubkey_algo, gpg_strerror (err));
break;
}
@@ -614,7 +617,8 @@ check_all_keysigs (KBNODE kb, int only_selected, int only_selfsigs)
{
if (DBG_PACKET && pending_desc)
log_debug ("%s", pending_desc);
- tty_printf (_("can't check signature with unsupported message-digest algorithm %d: %s.\n"),
+ tty_printf (_("can't check signature with unsupported"
+ " message-digest algorithm %d: %s.\n"),
sig->digest_algo, gpg_strerror (err));
break;
}
@@ -664,7 +668,8 @@ check_all_keysigs (KBNODE kb, int only_selected, int only_selfsigs)
if (DBG_PACKET)
{
log_debug ("%s", pending_desc);
- log_debug (" Good signature out of order! (Over %s (%d) '%s')\n",
+ log_debug (" Good signature out of order!"
+ " (Over %s (%d) '%s')\n",
n2->pkt->pkttype == PKT_USER_ID
? "user id"
: n2->pkt->pkttype == PKT_PUBLIC_SUBKEY
@@ -906,7 +911,8 @@ check_all_keysigs (KBNODE kb, int only_selected, int only_selfsigs)
reordered), reordered);
if (only_selfsigs && (bad_signature || reordered))
- tty_printf (_("Warning: errors found and only checked self-signatures, run 'check' to check all signatures.\n"));
+ tty_printf (_("Warning: errors found and only checked self-signatures,"
+ " run '%s' to check all signatures.\n"), "check");
return modified;
}
@@ -989,7 +995,8 @@ trustsig_prompt (byte * trust_value, byte * trust_depth, char **regexp)
tty_printf ("\n");
tty_printf (_("Please enter the depth of this trust signature.\n"
- "A depth greater than 1 allows the key you are signing to make\n"
+ "A depth greater than 1 allows the key you are"
+ " signing to make\n"
"trust signatures on your behalf.\n"));
tty_printf ("\n");