summaryrefslogtreecommitdiff
path: root/apps/app_voicemail.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-12-19 21:13:41 +0000
committerMark Spencer <markster@digium.com>2004-12-19 21:13:41 +0000
commitd6471bec319883d03b5e453b8116f32b4733b173 (patch)
tree788562539a60bddcdd1880d1d76415845a03beac /apps/app_voicemail.c
parentd6a415c262650a635bd789591ec238c8877d7367 (diff)
Merge Olle's comment patch (bug #3097)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4488 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_voicemail.c')
-rwxr-xr-xapps/app_voicemail.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 751cde0ff..2a6986280 100755
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -1299,7 +1299,7 @@ yuck:
#else
static int count_messages(char *dir)
{
- // Find all .txt files - even if they are not in sequence from 0000
+ /* Find all .txt files - even if they are not in sequence from 0000 */
int vmcount = 0;
DIR *vmdir = NULL;
@@ -2214,12 +2214,10 @@ leave_vm_out:
return res;
}
-#ifdef USE_ODBC_STORAGE
-#endif
static void resequence_mailbox(char * dir)
{
- // we know max messages, so stop process when number is hit
+ /* we know max messages, so stop process when number is hit */
int x,dest;
char sfn[256];