From: Russell Bryant Date: Thu, 22 Feb 2007 16:25:22 +0000 (+0000) Subject: Fix some compilation problems in app_voicemail. There was a parenthesis missing X-Git-Tag: 1.6.0-beta1~3^2~3132 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=05a4b32f2a5c48ae346b9e64289d8c23636e82e9;p=thirdparty%2Fasterisk.git 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: https://origsvn.digium.com/svn/asterisk/trunk@56187 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 4c06935d86..1d0947e9ff 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";