From: Nikos Mavrogiannopoulos Date: Sat, 8 Jun 2013 18:27:22 +0000 (+0200) Subject: fix typo X-Git-Tag: gnutls_3_2_2~68 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=08e59c83bf7d510c0eda2fb13697177cf0156228;p=thirdparty%2Fgnutls.git fix typo --- diff --git a/lib/gnutls_privkey.c b/lib/gnutls_privkey.c index 3e3e8111be..1436b16e89 100644 --- a/lib/gnutls_privkey.c +++ b/lib/gnutls_privkey.c @@ -686,7 +686,7 @@ cleanup: * gnutls_privkey_sign_data: * @signer: Holds the key * @hash: should be a digest algorithm - * @flags: Zero or on of %gnutls_privkey_flags_t + * @flags: Zero or one of %gnutls_privkey_flags_t * @data: holds the data to be signed * @signature: will contain the signature allocate with gnutls_malloc() * diff --git a/lib/gnutls_pubkey.c b/lib/gnutls_pubkey.c index f4ef15e818..f27caa6477 100644 --- a/lib/gnutls_pubkey.c +++ b/lib/gnutls_pubkey.c @@ -1530,7 +1530,7 @@ gnutls_pubkey_import_dsa_raw (gnutls_pubkey_t key, /** * gnutls_pubkey_verify_data: * @pubkey: Holds the public key - * @flags: Zero or on of %gnutls_pubkey_flags_t + * @flags: Zero or one of %gnutls_pubkey_flags_t * @data: holds the signed data * @signature: contains the signature * @@ -1580,7 +1580,7 @@ gnutls_pubkey_verify_data (gnutls_pubkey_t pubkey, unsigned int flags, * gnutls_pubkey_verify_data2: * @pubkey: Holds the public key * @algo: The signature algorithm used - * @flags: Zero or on of %gnutls_pubkey_flags_t + * @flags: Zero or one of %gnutls_pubkey_flags_t * @data: holds the signed data * @signature: contains the signature * @@ -1626,7 +1626,7 @@ gnutls_pubkey_verify_data2 (gnutls_pubkey_t pubkey, /** * gnutls_pubkey_verify_hash: * @key: Holds the public key - * @flags: Zero or on of %gnutls_pubkey_flags_t + * @flags: Zero or one of %gnutls_pubkey_flags_t * @hash: holds the hash digest to be verified * @signature: contains the signature * @@ -1661,7 +1661,7 @@ int ret; * gnutls_pubkey_verify_hash2: * @key: Holds the public key * @algo: The signature algorithm used - * @flags: Zero or on of %gnutls_pubkey_flags_t + * @flags: Zero or one of %gnutls_pubkey_flags_t * @hash: holds the hash digest to be verified * @signature: contains the signature *