"this" removed from comments.

This commit is contained in:
Tobias Brunner
2011-07-06 09:43:45 +02:00
parent f0ba8ae042
commit 28623fc538
9 changed files with 4 additions and 20 deletions
@@ -79,7 +79,6 @@ struct ac_t {
/**
* @brief Checks if two attribute certificates belong to the same holder
*
* @param this calling attribute certificate
* @param that other attribute certificate
* @return TRUE if same holder
*/
@@ -197,8 +197,7 @@ struct certificate_t {
/**
* Generic check if a given certificate is newer than another.
*
* @param this first certificate to check
* @param other second certificate
* @param other certificate to compare to
* @return TRUE if this newer than other
*/
bool certificate_is_newer(certificate_t *this, certificate_t *other);
@@ -100,8 +100,7 @@ struct crl_t {
/**
* Generic check if a given CRL is newer than another.
*
* @param this first CRL to check
* @param other second CRL
* @param other CRL to compare to
* @return TRUE if this newer than other
*/
bool crl_is_newer(crl_t *this, crl_t *other);
@@ -133,8 +133,7 @@ struct private_key_t {
/**
* Generic private key equals() implementation, usable by implementors.
*
* @param this first key to compare
* @param other second key to compare
* @param other key to compare
* @return TRUE if this is equal to other
*/
bool private_key_equals(private_key_t *this, private_key_t *other);
@@ -151,7 +150,6 @@ bool private_key_belongs_to(private_key_t *private, public_key_t *public);
/**
* Generic private key has_fingerprint() implementation, usable by implementors.
*
* @param this key to check fingerprint
* @param fingerprint fingerprint to check
* @return TRUE if key has given fingerprint
*/
@@ -215,8 +215,7 @@ struct public_key_t {
/**
* Generic public key equals() implementation, usable by implementors.
*
* @param this first key to compare
* @param other second key to compare
* @param other key to compare
* @return TRUE if this is equal to other
*/
bool public_key_equals(public_key_t *this, public_key_t *other);
@@ -224,7 +223,6 @@ bool public_key_equals(public_key_t *this, public_key_t *other);
/**
* Generic public key has_fingerprint() implementation, usable by implementors.
*
* @param this key to check fingerprint
* @param fingerprint fingerprint to check
* @return TRUE if key has given fingerprint
*/