summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2011-07-28 19:39:10 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2011-07-28 19:39:10 +0200
commit6faa558ae8905f78a2dc411a6dbe432eafd9e540 (patch)
tree53b2c445a442bfdbf4cc34452bbfc09a28231ed5
parentbdf80d7d42baeee0c42a1eae8f6b61e33bdb17b6 (diff)
downloadgnutls-6faa558ae8905f78a2dc411a6dbe432eafd9e540.tar.gz
Corrected typo.
-rw-r--r--src/certtool-gaa.c2
-rw-r--r--src/certtool.gaa2
2 files changed, 2 insertions, 2 deletions
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."