[svn-commits] tzafrir: trunk r299005 - in /trunk: channels/ main/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Dec 20 09:14:50 UTC 2010


Author: tzafrir
Date: Mon Dec 20 03:14:45 2010
New Revision: 299005

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=299005
Log:
Typos: recieved => received

Modified:
    trunk/channels/chan_sip.c
    trunk/channels/sig_pri.h
    trunk/main/aoc.c

Modified: trunk/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/trunk/channels/chan_sip.c?view=diff&rev=299005&r1=299004&r2=299005
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Mon Dec 20 03:14:45 2010
@@ -20762,7 +20762,7 @@
 		}
 	} else if (!strcmp(event, "keep-alive")) {
 		 /* Used by Sipura/Linksys for NAT pinhole,
-		  * just confirm that we recieved the packet. */
+		  * just confirm that we received the packet. */
 		transmit_response(p, "200 OK", req);
 	} else if (!strcmp(event, "call-completion")) {
 		res = handle_cc_notify(p, req);

Modified: trunk/channels/sig_pri.h
URL: http://svnview.digium.com/svn/asterisk/trunk/channels/sig_pri.h?view=diff&rev=299005&r1=299004&r2=299005
==============================================================================
--- trunk/channels/sig_pri.h (original)
+++ trunk/channels/sig_pri.h Mon Dec 20 03:14:45 2010
@@ -206,7 +206,7 @@
 	struct pri_subcmd_aoc_e aoc_e;
 	int aoc_s_request_invoke_id;     /*!< If an AOC-S request was present for the call, this is the invoke_id to use for the response */
 	unsigned int aoc_s_request_invoke_id_valid:1; /*!< This is set when the AOC-S invoke id is present */
-	unsigned int waiting_for_aoce:1; /*!< Delaying hangup for AOC-E msg. If this is set and AOC-E is recieved, continue with hangup before timeout period. */
+	unsigned int waiting_for_aoce:1; /*!< Delaying hangup for AOC-E msg. If this is set and AOC-E is received, continue with hangup before timeout period. */
 	unsigned int holding_aoce:1;     /*!< received AOC-E msg from asterisk. holding for disconnect/release */
 #endif	/* defined(HAVE_PRI_AOC_EVENTS) */
 	unsigned int inalarm:1;

Modified: trunk/main/aoc.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/aoc.c?view=diff&rev=299005&r1=299004&r2=299005
==============================================================================
--- trunk/main/aoc.c (original)
+++ trunk/main/aoc.c Mon Dec 20 03:14:45 2010
@@ -253,7 +253,7 @@
 				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 @@
 				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 @@
 				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 @@
 					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 @@
 				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:




More information about the svn-commits mailing list