]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Missing curly braces. Oops. (Reported by snuffy via IRC)
authorTilghman Lesher <tilghman@meg.abyt.es>
Mon, 20 Aug 2007 02:42:49 +0000 (02:42 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Mon, 20 Aug 2007 02:42:49 +0000 (02:42 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@79998 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_voicemail.c

index be8b8c349a2f16180cead96f189bd92d9a701283..fd6fcd3eaa927f2cc3208cfe6428503eb7fa2350 100644 (file)
@@ -2864,11 +2864,12 @@ static int leave_voicemail(struct ast_channel *chan, char *ext, struct leave_vm_
                        if (ast_streamfile(chan, prefile, chan->language) > -1) 
                                res = ast_waitstream(chan, ecodes);
 #ifdef ODBC_STORAGE
-                       if(success == -1) 
-                               /*We couldn't retrieve the file from the database, but we found it on the file system. Let's put it in the database*/
-                               if(option_debug)
+                       if (success == -1) {
+                               /* We couldn't retrieve the file from the database, but we found it on the file system. Let's put it in the database. */
+                               if (option_debug)
                                        ast_log(LOG_DEBUG, "Greeting not retrieved from database, but found in file storage. Inserting into database\n");
                                store_file(prefile, vmu->mailbox, vmu->context, -1);
+                       }
 #endif
                } else {
                        if (option_debug)