dect
/
asterisk
Archived
13
0
Fork 0

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
This commit is contained in:
russell 2007-02-22 16:25:22 +00:00
parent 8980dfcc6c
commit 9b85c6e1c2
1 changed files with 6 additions and 4 deletions

View File

@ -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";