1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-04-17 15:44:34 +02:00

Fix some spelling errors. Fixes bug#1127.

This commit is contained in:
Werner Koch 2009-12-21 15:58:06 +00:00
parent 18392e8d61
commit 4ac7cb0725
3 changed files with 6 additions and 6 deletions

View File

@ -948,7 +948,7 @@ change_cert (const char *args)
} }
else else
{ {
tty_printf ("usage error: redirectrion to file required\n"); tty_printf ("usage error: redirection to file required\n");
return -1; return -1;
} }
@ -977,7 +977,7 @@ read_cert (const char *args)
} }
else else
{ {
tty_printf ("usage error: redirectrion to file required\n"); tty_printf ("usage error: redirection to file required\n");
return -1; return -1;
} }

View File

@ -845,11 +845,11 @@ parse_ccid_descriptor (ccid_driver_t handle,
if ((us & 0x0020)) if ((us & 0x0020))
DEBUGOUT (" Auto baud rate change\n"); DEBUGOUT (" Auto baud rate change\n");
if ((us & 0x0040)) if ((us & 0x0040))
DEBUGOUT (" Auto parameter negotation made by CCID\n"); DEBUGOUT (" Auto parameter negotiation made by CCID\n");
else if ((us & 0x0080)) else if ((us & 0x0080))
DEBUGOUT (" Auto PPS made by CCID\n"); DEBUGOUT (" Auto PPS made by CCID\n");
else if ((us & (0x0040 | 0x0080))) else if ((us & (0x0040 | 0x0080)))
DEBUGOUT (" WARNING: conflicting negotation features\n"); DEBUGOUT (" WARNING: conflicting negotiation features\n");
if ((us & 0x0100)) if ((us & 0x0100))
DEBUGOUT (" CCID can set ICC in clock stop mode\n"); DEBUGOUT (" CCID can set ICC in clock stop mode\n");

View File

@ -1657,7 +1657,7 @@ clean_sigs_from_uid(KBNODE keyblock,KBNODE uidnode,int noisy,int self_only)
/* Everything else we delete */ /* Everything else we delete */
/* At this point, if 12 is set, the signing key was unavailable. /* At this point, if 12 is set, the signing key was unavailable.
If 9 or 10 is set, it's superceded. Otherwise, it's If 9 or 10 is set, it's superseded. Otherwise, it's
invalid. */ invalid. */
if(noisy) if(noisy)
@ -1665,7 +1665,7 @@ clean_sigs_from_uid(KBNODE keyblock,KBNODE uidnode,int noisy,int self_only)
keystr(node->pkt->pkt.signature->keyid), keystr(node->pkt->pkt.signature->keyid),
uidnode->pkt->pkt.user_id->name, uidnode->pkt->pkt.user_id->name,
node->flag&(1<<12)?"key unavailable": node->flag&(1<<12)?"key unavailable":
node->flag&(1<<9)?"signature superceded":"invalid signature"); node->flag&(1<<9)?"signature superseded":"invalid signature");
delete_kbnode(node); delete_kbnode(node);
deleted++; deleted++;