diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2006-10-25 08:42:16 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2006-10-25 08:42:16 +0000 |
commit | 3364ef1d56c7947bb23b0a4db9bdb8bf4b329d2e (patch) | |
tree | 9fa2939597fce419e2e934438419dfcee593c413 | |
parent | 66a09e1d6e14038dc618f7b10f2ce165e09d089d (diff) | |
download | strongswan-3364ef1d56c7947bb23b0a4db9bdb8bf4b329d2e.tar.bz2 strongswan-3364ef1d56c7947bb23b0a4db9bdb8bf4b329d2e.tar.xz |
fixed typo in debug statement
-rw-r--r-- | src/charon/encoding/parser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charon/encoding/parser.c b/src/charon/encoding/parser.c index 4215d3840..efa623ab3 100644 --- a/src/charon/encoding/parser.c +++ b/src/charon/encoding/parser.c @@ -176,7 +176,7 @@ struct private_parser_t { /** * @brief Parse substructures in a list * - * This function calls the parser recursivly to parse contained substructures + * This function calls the parser recursively to parse contained substructures * in a linked_list_t. The list must already be created. Payload defines * the type of the substructures. parsing is continued until the specified length * is completely parsed. @@ -517,7 +517,7 @@ static status_t parse_list(private_parser_t *this, int rule_number, linked_list_ u_int8_t *pos_before = this->byte_pos; payload_t *payload; status_t status; - DBG2(SIG_DBG_ENC, " %d bytes left, parsing recursivly %N", + DBG2(SIG_DBG_ENC, " %d bytes left, parsing recursively %N", length, payload_type_names, payload_type); status = this->public.parse_payload((parser_t*)this, payload_type, &payload); if (status != SUCCESS) |