[asterisk-commits] mvanbaak: branch 1.6.0 r176022 - in /branches/1.6.0: ./ channels/ doc/ includ...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Mon Feb 16 03:40:22 CST 2009


Author: mvanbaak
Date: Mon Feb 16 03:40:22 2009
New Revision: 176022

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=176022
Log:
Merged revisions 175952 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

................
  r175952 | mvanbaak | 2009-02-16 01:26:59 +0100 (Mon, 16 Feb 2009) | 10 lines
  
  Merged revisions 175921 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r175921 | mvanbaak | 2009-02-16 00:37:03 +0100 (Mon, 16 Feb 2009) | 3 lines
    
    fix mis-spelling of the word registered.
    Reported by De_Mon on #asterisk-dev.
  ........
................

Modified:
    branches/1.6.0/   (props changed)
    branches/1.6.0/channels/chan_sip.c
    branches/1.6.0/channels/chan_unistim.c
    branches/1.6.0/doc/unistim.txt
    branches/1.6.0/include/asterisk/manager.h

Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.0/channels/chan_sip.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.0/channels/chan_sip.c?view=diff&rev=176022&r1=176021&r2=176022
==============================================================================
--- branches/1.6.0/channels/chan_sip.c (original)
+++ branches/1.6.0/channels/chan_sip.c Mon Feb 16 03:40:22 2009
@@ -363,7 +363,7 @@
 
 /*! \brief States for outbound registrations (with register= lines in sip.conf */
 enum sipregistrystate {
-	REG_STATE_UNREGISTERED = 0,	/*!< We are not registred 
+	REG_STATE_UNREGISTERED = 0,	/*!< We are not registered 
 		 *  \note Initial state. We should have a timeout scheduled for the initial
 		 * (or next) registration transmission, calling sip_reregister
 		 */
@@ -20047,7 +20047,7 @@
 	*/
 	if (create_addr(p, host)) {
 		*cause = AST_CAUSE_UNREGISTERED;
-		ast_debug(3, "Cant create SIP call - target device not registred\n");
+		ast_debug(3, "Cant create SIP call - target device not registered\n");
 		sip_destroy(p);
 		return NULL;
 	}

Modified: branches/1.6.0/channels/chan_unistim.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.0/channels/chan_unistim.c?view=diff&rev=176022&r1=176021&r2=176022
==============================================================================
--- branches/1.6.0/channels/chan_unistim.c (original)
+++ branches/1.6.0/channels/chan_unistim.c Mon Feb 16 03:40:22 2009
@@ -1111,7 +1111,7 @@
 		cur = cur->next;
 	}
 	if (cur) {				      /* Session found ? */
-		if (cur->device) {	      /* This session was registred ? */
+		if (cur->device) {	      /* This session was registered ? */
 			s->state = STATE_CLEANING;
 			if (unistimdebug)
 				ast_verb(0, "close_client session %p device %p lines %p sub %p\n",
@@ -3318,7 +3318,7 @@
 			for (i = 1; i < 6; i++)
 				send_favorite(i, 0, pte, "");
 			send_text(TEXT_LINE0, TEXT_NORMAL, pte, "Sorry, this phone is not");
-			send_text(TEXT_LINE1, TEXT_NORMAL, pte, "registred in unistim.cfg");
+			send_text(TEXT_LINE1, TEXT_NORMAL, pte, "registered in unistim.cfg");
 			strcpy(tmp, "MAC = ");
 			strcat(tmp, pte->macaddr);
 			send_text(TEXT_LINE2, TEXT_NORMAL, pte, tmp);
@@ -3413,7 +3413,7 @@
 	if (memcmp(buf + SIZE_HEADER, packet_recv_pick_up, sizeof(packet_recv_pick_up)) == 0) {
 		if (unistimdebug)
 			ast_verb(0, "Handset off hook\n");
-		if (!pte->device)	       /* We are not yet registred (asking for a TN in AUTOPROVISIONING_TN) */
+		if (!pte->device)	       /* We are not yet registered (asking for a TN in AUTOPROVISIONING_TN) */
 			return;
 		pte->device->receiver_state = STATE_OFFHOOK;
 		if (pte->device->output == OUTPUT_HEADPHONE)

Modified: branches/1.6.0/doc/unistim.txt
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.0/doc/unistim.txt?view=diff&rev=176022&r1=176021&r2=176022
==============================================================================
--- branches/1.6.0/doc/unistim.txt (original)
+++ branches/1.6.0/doc/unistim.txt Mon Feb 16 03:40:22 2009
@@ -64,7 +64,7 @@
 - This feature must only be used on a trusted network. It's very insecure : all unistim phones
   will be able to use your asterisk pbx.
 - You must add an entry called [template]. Each new phones will be based on this profile.
-- You must set a least line=>. This value will be incremented when a new phone is registred.
+- You must set a least line=>. This value will be incremented when a new phone is registered.
   device= must not be specified. By default, the phone will asks for a number. It will be added into
   the dialplan. Add extension=line for using the generated line number instead.
  Example :

Modified: branches/1.6.0/include/asterisk/manager.h
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.0/include/asterisk/manager.h?view=diff&rev=176022&r1=176021&r2=176022
==============================================================================
--- branches/1.6.0/include/asterisk/manager.h (original)
+++ branches/1.6.0/include/asterisk/manager.h Mon Feb 16 03:40:22 2009
@@ -145,8 +145,8 @@
 	const char *synopsis,
 	const char *description);
 
-/*! \brief Unregister a registred manager command 
-	\param action Name of registred Action:
+/*! \brief Unregister a registered manager command 
+	\param action Name of registered Action:
 */
 int ast_manager_unregister( char *action );
 




More information about the asterisk-commits mailing list