[svn-commits] file: trunk r44516 - /trunk/apps/app_voicemail.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Thu Oct 5 13:13:05 MST 2006


Author: file
Date: Thu Oct  5 15:13:04 2006
New Revision: 44516

URL: http://svn.digium.com/view/asterisk?rev=44516&view=rev
Log:
Fix indenting a bit (issue #8082 reported by selsky)

Modified:
    trunk/apps/app_voicemail.c

Modified: trunk/apps/app_voicemail.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_voicemail.c?rev=44516&r1=44515&r2=44516&view=diff
==============================================================================
--- trunk/apps/app_voicemail.c (original)
+++ trunk/apps/app_voicemail.c Thu Oct  5 15:13:04 2006
@@ -8155,33 +8155,33 @@
 {
 	if (delimiter)
 		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");
 	}
 }
 
 
 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");
 	}
 }
 



More information about the svn-commits mailing list