summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2011-07-28 19:39:46 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2011-07-28 19:39:46 +0200
commit7544a585429668e0b5b4eccc463a9cd3ac247bad (patch)
tree6486feb8a1a728c21d4046625105f0599c099f7d
parent15d9a783a560b1fe99604ca56ca238e485a524e5 (diff)
downloadgnutls-7544a585429668e0b5b4eccc463a9cd3ac247bad.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 a741a64dc3..232d923129 100644
--- a/src/certtool-gaa.c
+++ b/src/certtool-gaa.c
@@ -141,7 +141,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 7c67af319b..a066bdf9e6 100644
--- a/src/certtool.gaa
+++ b/src/certtool.gaa
@@ -40,7 +40,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."