aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authormvanbaak <mvanbaak@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-15 23:37:03 +0000
committermvanbaak <mvanbaak@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-15 23:37:03 +0000
commit5e9e3f596281b19c270b2e4eb060b8c0cffa56ae (patch)
tree48d980e93ed4ce0655a03e3cb70fa5c5033f99fb /channels
parentb27ca854a4fccdb23f6ebe4198677c95f27c2ddc (diff)
fix mis-spelling of the word registered.
Reported by De_Mon on #asterisk-dev. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@175921 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index e10128563..acb0a2e90 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -355,10 +355,10 @@ enum check_auth_result {
/*! \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 @@ static struct ast_channel *sip_request_call(const char *type, int format, void *
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;
}