aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_voicemail.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-22 16:25:22 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-22 16:25:22 +0000
commit9b85c6e1c22b91f58e888257516fa89a3d40a221 (patch)
tree7a7a4fedbeec87d217917642d2ed63b433b7bb8f /apps/app_voicemail.c
parent8980dfcc6c790734d018b151ee29219a23b731a0 (diff)
Fix some compilation problems in app_voicemail. There was a parenthesis missing
in a function prototype, and "#elifdef" is not a valid preprocessor directive. (issue #9122, akohlsmith) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@56187 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_voicemail.c')
-rw-r--r--apps/app_voicemail.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 4c06935d8..1d0947e9f 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -122,7 +122,7 @@ struct ast_vm_user;
/* Forward declarations for IMAP */
static int init_mailstream(struct vm_state *vms, int box);
-static void write_file char *filename, char *buffer, unsigned long len);
+static void write_file(char *filename, char *buffer, unsigned long len);
static void display_body(BODY *body, char *pfx, long i);
static char *get_header_by_tag(char *header, char *tag, char *buf, size_t len);
static void vm_imap_delete(int msgnum, struct vm_state *vms);
@@ -417,10 +417,12 @@ static int pwdchange = PWDCHANGE_INTERNAL;
#ifdef ODBC_STORAGE
#define tdesc "Comedian Mail (Voicemail System) with ODBC Storage"
-#elifdef IMAP_STORAGE
-#define tdesc "Comedian Mail (Voicemail System) with IMAP Storage"
#else
-#define tdesc "Comedian Mail (Voicemail System)"
+# ifdef IMAP_STORAGE
+# define tdesc "Comedian Mail (Voicemail System) with IMAP Storage"
+# else
+# define tdesc "Comedian Mail (Voicemail System)"
+# endif
#endif
static char userscontext[AST_MAX_EXTENSION] = "default";