aboutsummaryrefslogtreecommitdiffstats
path: root/main
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 /main
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 'main')
-rw-r--r--main/devicestate.c2
-rw-r--r--main/pbx.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/main/devicestate.c b/main/devicestate.c
index f84c87df7..5368a5ab0 100644
--- a/main/devicestate.c
+++ b/main/devicestate.c
@@ -50,7 +50,7 @@ static const char *devstatestring[] = {
/* 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 */
diff --git a/main/pbx.c b/main/pbx.c
index 187447588..b5ef43106 100644
--- a/main/pbx.c
+++ b/main/pbx.c
@@ -3256,7 +3256,7 @@ static int handle_show_application(int fd, int argc, char *argv[])
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 @@ static int handle_show_hints(int fd, int argc, char *argv[])
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;