[svn-commits] mvanbaak: branch 1.4 r175921 - in /branches/1.4: channels/ include/asterisk/ ...
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Sun Feb 15 17:37:04 CST 2009
Author: mvanbaak
Date: Sun Feb 15 17:37:03 2009
New Revision: 175921
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=175921
Log:
fix mis-spelling of the word registered.
Reported by De_Mon on #asterisk-dev.
Modified:
branches/1.4/channels/chan_sip.c
branches/1.4/include/asterisk/manager.h
branches/1.4/main/devicestate.c
branches/1.4/main/pbx.c
Modified: branches/1.4/channels/chan_sip.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.4/channels/chan_sip.c?view=diff&rev=175921&r1=175920&r2=175921
==============================================================================
--- branches/1.4/channels/chan_sip.c (original)
+++ branches/1.4/channels/chan_sip.c Sun Feb 15 17:37:03 2009
@@ -355,10 +355,10 @@
/*! \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 */
REG_STATE_REGSENT, /*!< Registration request sent */
REG_STATE_AUTHSENT, /*!< We have tried to authenticate */
- REG_STATE_REGISTERED, /*!< Registred and done */
+ REG_STATE_REGISTERED, /*!< Registered and done */
REG_STATE_REJECTED, /*!< Registration rejected */
REG_STATE_TIMEOUT, /*!< Registration timed out */
REG_STATE_NOAUTH, /*!< We have no accepted credentials */
@@ -16806,7 +16806,7 @@
if (create_addr(p, host, NULL)) {
*cause = AST_CAUSE_UNREGISTERED;
if (option_debug > 2)
- ast_log(LOG_DEBUG, "Cant create SIP call - target device not registred\n");
+ ast_log(LOG_DEBUG, "Cant create SIP call - target device not registered\n");
sip_destroy(p);
return NULL;
}
Modified: branches/1.4/include/asterisk/manager.h
URL: http://svn.digium.com/svn-view/asterisk/branches/1.4/include/asterisk/manager.h?view=diff&rev=175921&r1=175920&r2=175921
==============================================================================
--- branches/1.4/include/asterisk/manager.h (original)
+++ branches/1.4/include/asterisk/manager.h Sun Feb 15 17:37:03 2009
@@ -100,8 +100,8 @@
const char *synopsis,
const char *description);
-/*! Unregister a registred manager command */
-/*! \param action Name of registred Action:
+/*! Unregister a registered manager command */
+/*! \param action Name of registered Action:
*/
int ast_manager_unregister( char *action );
Modified: branches/1.4/main/devicestate.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.4/main/devicestate.c?view=diff&rev=175921&r1=175920&r2=175921
==============================================================================
--- branches/1.4/main/devicestate.c (original)
+++ branches/1.4/main/devicestate.c Sun Feb 15 17:37:03 2009
@@ -50,7 +50,7 @@
/* 2 AST_DEVICE IN USE */ "In use", /*!< In use */
/* 3 AST_DEVICE_BUSY */ "Busy", /*!< Busy */
/* 4 AST_DEVICE_INVALID */ "Invalid", /*!< Invalid - not known to Asterisk */
- /* 5 AST_DEVICE_UNAVAILABLE */ "Unavailable", /*!< Unavailable (not registred) */
+ /* 5 AST_DEVICE_UNAVAILABLE */ "Unavailable", /*!< Unavailable (not registered) */
/* 6 AST_DEVICE_RINGING */ "Ringing", /*!< Ring, ring, ring */
/* 7 AST_DEVICE_RINGINUSE */ "Ring+Inuse", /*!< Ring and in use */
/* 8 AST_DEVICE_ONHOLD */ "On Hold" /*!< On Hold */
Modified: branches/1.4/main/pbx.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.4/main/pbx.c?view=diff&rev=175921&r1=175920&r2=175921
==============================================================================
--- branches/1.4/main/pbx.c (original)
+++ branches/1.4/main/pbx.c Sun Feb 15 17:37:03 2009
@@ -3256,7 +3256,7 @@
return RESULT_SUCCESS;
}
-/*! \brief handle_show_hints: CLI support for listing registred dial plan hints */
+/*! \brief handle_show_hints: CLI support for listing registered dial plan hints */
static int handle_show_hints(int fd, int argc, char *argv[])
{
struct ast_hint *hint;
@@ -3288,7 +3288,7 @@
return RESULT_SUCCESS;
}
-/*! \brief handle_show_switches: CLI support for listing registred dial plan switches */
+/*! \brief handle_show_switches: CLI support for listing registered dial plan switches */
static int handle_show_switches(int fd, int argc, char *argv[])
{
struct ast_switch *sw;
More information about the svn-commits
mailing list