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:
b8aa324
)
Make sure the command is not just present but is also configured to be executed
author
Russell Bryant
<russell@russellbryant.com>
Tue, 22 Jan 2008 20:41:05 +0000
(20:41 +0000)
committer
Russell Bryant
<russell@russellbryant.com>
Tue, 22 Jan 2008 20:41:05 +0000
(20:41 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@99645
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
main/asterisk.c
patch
|
blob
|
history
diff --git
a/main/asterisk.c
b/main/asterisk.c
index
54a88a9
..
4c903cf
100644
(file)
--- a/
main/asterisk.c
+++ b/
main/asterisk.c
@@
-2695,8
+2695,10
@@
static void run_startup_commands(void)
if (fd < 0)
return;
- for (v = ast_variable_browse(cfg, "startup_commands"); v; v = v->next)
- ast_cli_command(fd, v->name);
+ for (v = ast_variable_browse(cfg, "startup_commands"); v; v = v->next) {
+ if (ast_true(v->value))
+ ast_cli_command(fd, v->name);
+ }
close(fd);
ast_config_destroy(cfg);