From: Andreas Steffen Date: Tue, 4 May 2010 04:18:10 +0000 (+0200) Subject: fixed typo X-Git-Tag: 4.4.1~295 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0465d2c0b768873bae00b96c1cce1b0954b746b3;p=thirdparty%2Fstrongswan.git fixed typo --- diff --git a/scripts/key2keyid.c b/scripts/key2keyid.c index cd6ebc1eda..36a81b3f19 100644 --- a/scripts/key2keyid.c +++ b/scripts/key2keyid.c @@ -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;