fixed typo

This commit is contained in:
Andreas Steffen
2010-05-04 16:17:32 +02:00
parent 17a02ff1b0
commit 0465d2c0b7
+2 -2
View File
@@ -47,7 +47,7 @@ int main(int argc, char *argv[])
} }
if (private->get_fingerprint(private, KEY_ID_PGPV3, &chunk)) 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); private->destroy(private);
return 0; return 0;
@@ -77,7 +77,7 @@ int main(int argc, char *argv[])
} }
if (public->get_fingerprint(public, KEY_ID_PGPV3, &chunk)) 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); public->destroy(public);
return 0; return 0;