summaryrefslogtreecommitdiff
path: root/modules/account
diff options
context:
space:
mode:
authorAlfred E. Heggestad <aeh@db.org>2014-12-26 20:44:18 +0100
committerAlfred E. Heggestad <aeh@db.org>2014-12-26 20:44:18 +0100
commit8be5dac1296d79c34b1de2938b0ad55cb0e1a0e2 (patch)
tree085f9fbb0ea51f9200e7b167ef12ec49172d5045 /modules/account
parent66230221221302f7d1d675e45c430b5591ed83fc (diff)
parent38bb8b89d423bebed521c4462be712968d0cb797 (diff)
Merge branch 'master' of git://github.com/lmangani/baresip
Diffstat (limited to 'modules/account')
-rw-r--r--modules/account/account.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/account/account.c b/modules/account/account.c
index 9659bd0..d291794 100644
--- a/modules/account/account.c
+++ b/modules/account/account.c
@@ -65,7 +65,7 @@ static int account_write_template(const char *file)
"[2001:df8:0:16:216:6fff:fe91:614c]:5070"
";transport=tcp>\n"
"#\n"
- "<sip:%s:%s@%s>\n", login, pass, domain);
+ "#<sip:%s:%s@%s>\n", login, pass, domain);
if (f)
(void)fclose(f);
@@ -128,8 +128,9 @@ static int account_read_file(void)
info("Populated %u account%s\n", n, 1==n ? "" : "s");
if (list_isempty(uag_list())) {
- warning("account: No SIP accounts found"
- " -- check your config\n");
+ warning("account: No SIP accounts found\n"
+ " -- check your config "
+ "or add an account using 'R' command\n");
return ENOENT;
}