]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
formatting fix.
authorMatt O'Gorman <mogorman@digium.com>
Mon, 30 Oct 2006 22:22:34 +0000 (22:22 +0000)
committerMatt O'Gorman <mogorman@digium.com>
Mon, 30 Oct 2006 22:22:34 +0000 (22:22 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@46527 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_voicemail.c

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