Remove an unnecessary #ifdef

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@204561 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Sean Bright 2009-06-30 20:39:39 +00:00
parent 320c8d27b9
commit fa1f156dba
1 changed files with 0 additions and 4 deletions

View File

@ -1703,11 +1703,7 @@ static int folder_int(const char *folder)
/*assume a NULL folder means INBOX*/
if (!folder)
return 0;
#ifdef IMAP_STORAGE
if (!strcasecmp(folder, imapfolder))
#else
if (!strcasecmp(folder, "INBOX"))
#endif
return 0;
else if (!strcasecmp(folder, "Old"))
return 1;