projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8ea87da
)
Small SQL fix (bug #412)
author
Mark Spencer
<markster@digium.com>
Wed, 22 Oct 2003 03:12:17 +0000
(
03:12
+0000)
committer
Mark Spencer
<markster@digium.com>
Wed, 22 Oct 2003 03:12:17 +0000
(
03:12
+0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1648
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
apps/app_voicemail2.c
patch
|
blob
|
history
diff --git
a/apps/app_voicemail2.c
b/apps/app_voicemail2.c
index
2f8b165
..
1a14708
100755
(executable)
--- a/
apps/app_voicemail2.c
+++ b/
apps/app_voicemail2.c
@@
-2926,9
+2926,10
@@
int load_module(void)
return(res);
}
+ if ((res = sql_init())) {
ast_log(LOG_WARNING, "SQL init\n");
- if ((res = sql_init()))
return res;
+ }
return res;
}