mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 03:50:31 +00:00
add missing newlines, fix misspelling of nonexistent (bug #4027)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5467 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
4
app.c
4
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;
|
||||
|
Reference in New Issue
Block a user