]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
Corrected typo.
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Thu, 28 Jul 2011 17:39:10 +0000 (19:39 +0200)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Thu, 28 Jul 2011 17:39:10 +0000 (19:39 +0200)
src/certtool-gaa.c
src/certtool.gaa

index 5a6f6b256b69bb36ced0f290310679a9acad1650..67ba16bf4c6810def1d6f0fad89eab2472b27b82 100644 (file)
@@ -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.");
index f51fc9b49024473b1f9fba633d8a6bf5451f952b..078a5e8d8637c4a5f21bbef6674f35c7ed767def 100644 (file)
@@ -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."