aboutsummaryrefslogtreecommitdiffstats
path: root/app.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-13 23:33:47 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-13 23:33:47 +0000
commit9201aa9db06c3ddd9e05f59c977b0349c9f616eb (patch)
tree7b5e30d0938eb2c5696d0c31806be80050699d39 /app.c
parenta5898b4c0d9f7147f38315d743ca62c16e2ac85c (diff)
add missing newlines, fix misspelling of nonexistent (bug #4027)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5467 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'app.c')
-rwxr-xr-xapp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/app.c b/app.c
index 9d70e5385..b7bacde65 100755
--- a/app.c
+++ b/app.c
@@ -231,7 +231,7 @@ int ast_app_has_voicemail(const char *mailbox, const char *folder)
return ast_has_voicemail_func(mailbox, folder);
if ((option_verbose > 2) && !warned) {
- ast_verbose(VERBOSE_PREFIX_3 "Message check requested for mailbox %s/folder %s but voicemail not loaded.", mailbox, folder ? folder : "INBOX");
+ ast_verbose(VERBOSE_PREFIX_3 "Message check requested for mailbox %s/folder %s but voicemail not loaded.\n", mailbox, folder ? folder : "INBOX");
warned++;
}
return 0;
@@ -250,7 +250,7 @@ int ast_app_messagecount(const char *mailbox, int *newmsgs, int *oldmsgs)
if (!warned && (option_verbose > 2)) {
warned++;
- ast_verbose(VERBOSE_PREFIX_3 "Message count requested for mailbox %s but voicemail not loaded.", mailbox);
+ ast_verbose(VERBOSE_PREFIX_3 "Message count requested for mailbox %s but voicemail not loaded.\n", mailbox);
}
return 0;