aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2011-05-19 14:00:49 +0200
committerTobias Brunner <tobias@strongswan.org>2011-07-06 09:43:45 +0200
commit28623fc5389829858c78c759a214aa5c64ea26c6 (patch)
tree2d6733a8b891ffea532492a00b7582781509d241
parentf0ba8ae042b76628a77830b1c3ec6619c085b4c4 (diff)
downloadstrongswan-28623fc5389829858c78c759a214aa5c64ea26c6.tar.bz2
strongswan-28623fc5389829858c78c759a214aa5c64ea26c6.tar.xz
"this" removed from comments.
-rw-r--r--src/libfast/session.h2
-rw-r--r--src/libstrongswan/credentials/certificates/ac.h1
-rw-r--r--src/libstrongswan/credentials/certificates/certificate.h3
-rw-r--r--src/libstrongswan/credentials/certificates/crl.h3
-rw-r--r--src/libstrongswan/credentials/keys/private_key.h4
-rw-r--r--src/libstrongswan/credentials/keys/public_key.h4
-rw-r--r--src/libstrongswan/crypto/pkcs9.c2
-rw-r--r--src/libstrongswan/utils/iterator.h2
-rw-r--r--src/libstrongswan/utils/linked_list.h3
9 files changed, 4 insertions, 20 deletions
diff --git a/src/libfast/session.h b/src/libfast/session.h
index c6633f9ae..f60fa9ef2 100644
--- a/src/libfast/session.h
+++ b/src/libfast/session.h
@@ -62,8 +62,6 @@ struct session_t {
/**
* Destroy the session_t.
- *
- * @param this calling object
*/
void (*destroy) (session_t *this);
};
diff --git a/src/libstrongswan/credentials/certificates/ac.h b/src/libstrongswan/credentials/certificates/ac.h
index fef7f8c65..57b44adca 100644
--- a/src/libstrongswan/credentials/certificates/ac.h
+++ b/src/libstrongswan/credentials/certificates/ac.h
@@ -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
*/
diff --git a/src/libstrongswan/credentials/certificates/certificate.h b/src/libstrongswan/credentials/certificates/certificate.h
index 43bfe3dc1..bad509111 100644
--- a/src/libstrongswan/credentials/certificates/certificate.h
+++ b/src/libstrongswan/credentials/certificates/certificate.h
@@ -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);
diff --git a/src/libstrongswan/credentials/certificates/crl.h b/src/libstrongswan/credentials/certificates/crl.h
index 2f3497474..826a6c9e3 100644
--- a/src/libstrongswan/credentials/certificates/crl.h
+++ b/src/libstrongswan/credentials/certificates/crl.h
@@ -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);
diff --git a/src/libstrongswan/credentials/keys/private_key.h b/src/libstrongswan/credentials/keys/private_key.h
index e57d3f5a5..c45763aaf 100644
--- a/src/libstrongswan/credentials/keys/private_key.h
+++ b/src/libstrongswan/credentials/keys/private_key.h
@@ -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
*/
diff --git a/src/libstrongswan/credentials/keys/public_key.h b/src/libstrongswan/credentials/keys/public_key.h
index d20d2736b..79765ef5c 100644
--- a/src/libstrongswan/credentials/keys/public_key.h
+++ b/src/libstrongswan/credentials/keys/public_key.h
@@ -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
*/
diff --git a/src/libstrongswan/crypto/pkcs9.c b/src/libstrongswan/crypto/pkcs9.c
index e3ba0f129..0226fbd49 100644
--- a/src/libstrongswan/crypto/pkcs9.c
+++ b/src/libstrongswan/crypto/pkcs9.c
@@ -68,8 +68,6 @@ struct attribute_t {
/**
* Destroys the attribute.
- *
- * @param this attribute to destroy
*/
void (*destroy) (attribute_t *this);
diff --git a/src/libstrongswan/utils/iterator.h b/src/libstrongswan/utils/iterator.h
index 9be65b229..775442755 100644
--- a/src/libstrongswan/utils/iterator.h
+++ b/src/libstrongswan/utils/iterator.h
@@ -68,7 +68,6 @@ struct iterator_t {
*
* The iterator position is not changed after inserting.
*
- * @param this calling iterator
* @param item value to insert in list
*/
void (*insert_after) (iterator_t *this, void *item);
@@ -78,7 +77,6 @@ struct iterator_t {
*
* The iterator position is not changed after replacing.
*
- * @param this calling iterator
* @param old old value will be written here(can be NULL)
* @param new new value
* @return SUCCESS, FAILED if iterator is on an invalid position
diff --git a/src/libstrongswan/utils/linked_list.h b/src/libstrongswan/utils/linked_list.h
index 54ec48a51..85804270d 100644
--- a/src/libstrongswan/utils/linked_list.h
+++ b/src/libstrongswan/utils/linked_list.h
@@ -161,7 +161,6 @@ struct linked_list_t {
/**
* Returns the value of the first list item without removing it.
*
- * @param this calling object
* @param item returned value of first item
* @return SUCCESS, NOT_FOUND if list is empty
*/
@@ -177,7 +176,6 @@ struct linked_list_t {
/**
* Removes the last item in the list and returns its value.
*
- * @param this calling object
* @param item returned value of last item, or NULL
* @return SUCCESS, NOT_FOUND if list is empty
*/
@@ -186,7 +184,6 @@ struct linked_list_t {
/**
* Returns the value of the last list item without removing it.
*
- * @param this calling object
* @param item returned value of last item
* @return SUCCESS, NOT_FOUND if list is empty
*/