fixed typo

This commit is contained in:
Andreas Steffen 2010-05-04 06:18:10 +02:00
parent 17a02ff1b0
commit 0465d2c0b7
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ int main(int argc, char *argv[])
}
if (private->get_fingerprint(private, KEY_ID_PGPV3, &chunk))
{
printf("PGP verison 3 keyid: %#B\n", &chunk);
printf("PGP version 3 keyid: %#B\n", &chunk);
}
private->destroy(private);
return 0;
@ -77,7 +77,7 @@ int main(int argc, char *argv[])
}
if (public->get_fingerprint(public, KEY_ID_PGPV3, &chunk))
{
printf("PGP verison 3 keyid: %#B\n", &chunk);
printf("PGP version 3 keyid: %#B\n", &chunk);
}
public->destroy(public);
return 0;