From: Nikos Mavrogiannopoulos Date: Thu, 28 Jul 2011 17:39:10 +0000 (+0200) Subject: Corrected typo. X-Git-Tag: gnutls_3_0_0~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6faa558ae8905f78a2dc411a6dbe432eafd9e540;p=thirdparty%2Fgnutls.git Corrected typo. --- diff --git a/src/certtool-gaa.c b/src/certtool-gaa.c index 5a6f6b256b..67ba16bf4c 100644 --- a/src/certtool-gaa.c +++ b/src/certtool-gaa.c @@ -142,7 +142,7 @@ void gaa_help(void) __gaa_helpsingle(0, "generate-dh-params", "", "Generate PKCS #3 encoded Diffie-Hellman parameters."); __gaa_helpsingle(0, "get-dh-params", "", "Get the included PKCS #3 encoded Diffie-Hellman parameters."); __gaa_helpsingle(0, "load-privkey", "FILE ", "Private key file to use."); - __gaa_helpsingle(0, "load-pubkey", "FILE ", "Private key file to use."); + __gaa_helpsingle(0, "load-pubkey", "FILE ", "Public key file to use."); __gaa_helpsingle(0, "load-request", "FILE ", "Certificate request file to use."); __gaa_helpsingle(0, "load-certificate", "FILE ", "Certificate file to use."); __gaa_helpsingle(0, "load-ca-privkey", "FILE ", "Certificate authority's private key file to use."); diff --git a/src/certtool.gaa b/src/certtool.gaa index f51fc9b490..078a5e8d86 100644 --- a/src/certtool.gaa +++ b/src/certtool.gaa @@ -42,7 +42,7 @@ option (get-dh-params) { $action=ACTION_GET_DH; } "Get the included PKCS #3 enco option (load-privkey) STR "FILE" { $privkey = $1 } "Private key file to use." #char *pubkey; -option (load-pubkey) STR "FILE" { $pubkey = $1 } "Private key file to use." +option (load-pubkey) STR "FILE" { $pubkey = $1 } "Public key file to use." #char *request; option (load-request) STR "FILE" { $request = $1 } "Certificate request file to use."