aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authortzafrir <tzafrir@f38db490-d61c-443f-a65b-d21fe96a405b>2010-12-20 09:14:29 +0000
committertzafrir <tzafrir@f38db490-d61c-443f-a65b-d21fe96a405b>2010-12-20 09:14:29 +0000
commitbc7757eea52bc1defe656da9befd822d146c4540 (patch)
tree91c74c99bd97f10d223ae9d4170273cd1d8595bd /main
parentcd9755ae4f50c29e8ec01954d1abd658c380a09e (diff)
Typos: recieved => received
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.8@299004 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/aoc.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/main/aoc.c b/main/aoc.c
index c7cc8cf2f..733d322db 100644
--- a/main/aoc.c
+++ b/main/aoc.c
@@ -253,7 +253,7 @@ static int aoc_parse_ie(struct ast_aoc_decoded *decoded, unsigned char *data, un
decoded->multiplier = ie.multiplier; /* only one byte */
memcpy(decoded->currency_name, ie.name, sizeof(decoded->currency_name));
} else {
- ast_log(LOG_WARNING, "Recieved invalid currency ie\n");
+ ast_log(LOG_WARNING, "Received invalid currency ie\n");
}
break;
case AOC_IE_UNIT:
@@ -262,7 +262,7 @@ static int aoc_parse_ie(struct ast_aoc_decoded *decoded, unsigned char *data, un
memcpy(&ie, data + 2, len);
ast_aoc_add_unit_entry(decoded, ie.valid_amount, ntohl(ie.amount), ie.valid_type, ie.type);
} else {
- ast_log(LOG_WARNING, "Recieved invalid unit ie\n");
+ ast_log(LOG_WARNING, "Received invalid unit ie\n");
}
break;
case AOC_IE_BILLING:
@@ -271,7 +271,7 @@ static int aoc_parse_ie(struct ast_aoc_decoded *decoded, unsigned char *data, un
memcpy(&ie, data + 2, len);
decoded->billing_id = ie.id; /* only one byte */
} else {
- ast_log(LOG_WARNING, "Recieved invalid billing ie\n");
+ ast_log(LOG_WARNING, "Received invalid billing ie\n");
}
break;
case AOC_IE_CHARGING_ASSOCIATION:
@@ -282,7 +282,7 @@ static int aoc_parse_ie(struct ast_aoc_decoded *decoded, unsigned char *data, un
decoded->charging_association.charge.id = ntohl(decoded->charging_association.charge.id);
}
} else {
- ast_log(LOG_WARNING, "Recieved invalid charging association ie\n");
+ ast_log(LOG_WARNING, "Received invalid charging association ie\n");
}
break;
case AOC_IE_RATE:
@@ -291,14 +291,14 @@ static int aoc_parse_ie(struct ast_aoc_decoded *decoded, unsigned char *data, un
memcpy(&ie, data + 2, len);
aoc_parse_ie_charging_rate(decoded, &ie);
} else {
- ast_log(LOG_WARNING, "Recieved invalid charging rate ie\n");
+ ast_log(LOG_WARNING, "Received invalid charging rate ie\n");
}
break;
case AOC_IE_TERMINATION_REQUEST:
if (len == 0) {
decoded->termination_request = 1;
} else {
- ast_log(LOG_WARNING, "Recieved invalid termination request ie\n");
+ ast_log(LOG_WARNING, "Received invalid termination request ie\n");
}
break;
default: