From ea715d8f7fc1fe40f3aecfc02edbc00420750f7d Mon Sep 17 00:00:00 2001 From: Olle Johansson Date: Thu, 15 Jan 2009 18:18:34 +0000 Subject: [PATCH] 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: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@168714 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_sip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 4809a11eea..206f978eb1 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -6470,7 +6470,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]] */