aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstrongswan')
-rw-r--r--src/libstrongswan/types.c2
-rw-r--r--src/libstrongswan/types.h8
2 files changed, 5 insertions, 5 deletions
diff --git a/src/libstrongswan/types.c b/src/libstrongswan/types.c
index 3427b9433..6ba2a008b 100644
--- a/src/libstrongswan/types.c
+++ b/src/libstrongswan/types.c
@@ -39,7 +39,7 @@ mapping_t status_m[] = {
{PARSE_ERROR, "PARSE_ERROR"},
{VERIFY_ERROR, "VERIFY_ERROR"},
{INVALID_STATE, "INVALID_STATE"},
- {DELETE_ME, "DELETE_ME"},
+ {DESTROY_ME, "DESTROY_ME"},
{CREATED, "CREATED"},
{MAPPING_END, NULL}
};
diff --git a/src/libstrongswan/types.h b/src/libstrongswan/types.h
index 0498bdae5..14aee2c02 100644
--- a/src/libstrongswan/types.h
+++ b/src/libstrongswan/types.h
@@ -61,10 +61,10 @@ enum status_t {
/**
* Out of ressources.
*/
-
OUT_OF_RES,
+
/**
- * Already done.
+ * The suggested operation is already done
*/
ALREADY_DONE,
@@ -99,9 +99,9 @@ enum status_t {
INVALID_STATE,
/**
- * Delete object which function belongs to.
+ * Destroy object which called method belongs to.
*/
- DELETE_ME,
+ DESTROY_ME,
/**
* An object got created.