aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-15 18:14:20 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-15 18:14:20 +0000
commit9d2992959ff9a643954db2921afc5994c6a3c5eb (patch)
treefa6ac630234f89549a03821abf8d687579c1b7b4 /channels
parentd34a82be8a9035121db7cc1c7c8d0e163aa18f1b (diff)
Merged revisions 168712 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r168712 | oej | 2009-01-15 19:08:59 +0100 (Tor, 15 Jan 2009) | 3 lines Make sure that we have the same terminology in sip.conf.sample and the source code warning. Thanks Nick Lewis for pointing this out in the bug tracker. ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@168713 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 87d090e05..86479ff14 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -6174,7 +6174,7 @@ static int sip_register(const char *value, int lineno)
if (hostname)
*hostname++ = '\0';
if (ast_strlen_zero(username) || ast_strlen_zero(hostname)) {
- ast_log(LOG_WARNING, "Format for registration is [transport://]user[:secret[:authuser]]@host[:port][/contact][~expiry] at line %d\n", lineno);
+ ast_log(LOG_WARNING, "Format for registration is [transport://]user[:secret[:authuser]]@domain[:port][/extension][~expiry] at line %d\n", lineno);
return -1;
}
/* split user[:secret[:authuser]] */