summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2009-06-02 13:48:06 +0000
committerJoshua Colp <jcolp@digium.com>2009-06-02 13:48:06 +0000
commit5fcf193d7b43410bb8a2880b28efe3a17f7a1066 (patch)
tree48fd1f156fbf99a9294f53868da7867911b67569 /channels
parent4900d37d71ff8171461075f8b16ee486c730f106 (diff)
Correct documentation for the register line, specifically where the domain should be specified.
(closes issue #14367) Reported by: Nick_Lewis git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@198791 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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 0913438d4..c079e5900 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -7239,7 +7239,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]]@domain[:port][/extension][~expiry] at line %d\n", lineno);
+ ast_log(LOG_WARNING, "Format for registration is [transport://]user[@domain][:secret[:authuser]]@host[:port][/extension][~expiry] at line %d\n", lineno);
return -1;
}