Fix indenting a bit (issue #8082 reported by selsky)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@44516 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.0
Joshua Colp 19 years ago
parent 3dd0ce45fd
commit 9565f72ad3

@ -8155,33 +8155,33 @@ void mm_list(MAILSTREAM * stream, int delim, char *mailbox, long attributes)
{ {
if (delimiter) if (delimiter)
delimiter = delim; delimiter = delim;
if (option_debug > 4) { if (option_debug > 4) {
ast_log(LOG_DEBUG, "Delimiter set to %c and mailbox %s\n",delim, mailbox); ast_log(LOG_DEBUG, "Delimiter set to %c and mailbox %s\n",delim, mailbox);
if (attributes & LATT_NOINFERIORS) if (attributes & LATT_NOINFERIORS)
ast_log(LOG_DEBUG, "no inferiors\n"); ast_log(LOG_DEBUG, "no inferiors\n");
if (attributes & LATT_NOSELECT) if (attributes & LATT_NOSELECT)
ast_log(LOG_DEBUG, "no select\n"); ast_log(LOG_DEBUG, "no select\n");
if (attributes & LATT_MARKED) if (attributes & LATT_MARKED)
ast_log(LOG_DEBUG, "marked\n"); ast_log(LOG_DEBUG, "marked\n");
if (attributes & LATT_UNMARKED) if (attributes & LATT_UNMARKED)
ast_log(LOG_DEBUG, "unmarked\n"); ast_log(LOG_DEBUG, "unmarked\n");
} }
} }
void mm_lsub(MAILSTREAM * stream, int delimiter, char *mailbox, long attributes) void mm_lsub(MAILSTREAM * stream, int delimiter, char *mailbox, long attributes)
{ {
if (option_debug > 4) { if (option_debug > 4) {
ast_log(LOG_DEBUG, "Delimiter set to %c and mailbox %s\n",delimiter, mailbox); ast_log(LOG_DEBUG, "Delimiter set to %c and mailbox %s\n",delimiter, mailbox);
if (attributes & LATT_NOINFERIORS) if (attributes & LATT_NOINFERIORS)
ast_log(LOG_DEBUG, "no inferiors\n"); ast_log(LOG_DEBUG, "no inferiors\n");
if (attributes & LATT_NOSELECT) if (attributes & LATT_NOSELECT)
ast_log(LOG_DEBUG, "no select\n"); ast_log(LOG_DEBUG, "no select\n");
if (attributes & LATT_MARKED) if (attributes & LATT_MARKED)
ast_log(LOG_DEBUG, "marked\n"); ast_log(LOG_DEBUG, "marked\n");
if (attributes & LATT_UNMARKED) if (attributes & LATT_UNMARKED)
ast_log(LOG_DEBUG, "unmarked\n"); ast_log(LOG_DEBUG, "unmarked\n");
} }
} }

Loading…
Cancel
Save