aboutsummaryrefslogtreecommitdiffstats
path: root/pbx
diff options
context:
space:
mode:
authorjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2004-01-12 05:48:20 +0000
committerjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2004-01-12 05:48:20 +0000
commitc2a55459af36e7207bba7605156637572f00672a (patch)
tree5cc69a32c846940d00432effe6b90c30d71c3b64 /pbx
parent2f331c310e79ede902f38ea92b2077509b067b28 (diff)
revert half fixed bug (426)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1974 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx')
-rwxr-xr-xpbx/pbx_config.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/pbx/pbx_config.c b/pbx/pbx_config.c
index b0a55978d..d68c5adf4 100755
--- a/pbx/pbx_config.c
+++ b/pbx/pbx_config.c
@@ -903,8 +903,6 @@ static int handle_save_dialplan(int fd, int argc, char *argv[])
{
char filename[256];
struct ast_context *c;
- struct ast_config *cfg;
- struct ast_variable *var;
int context_header_written;
int incomplete = 0; /* incomplete config write? */
FILE *output;
@@ -924,9 +922,6 @@ static int handle_save_dialplan(int fd, int argc, char *argv[])
return RESULT_FAILURE;
}
- /* Load old file first */
- cfg = ast_load(config);
-
/* have config path? */
if (argc == 3) {
/* is there extension.conf too? */
@@ -951,8 +946,6 @@ static int handle_save_dialplan(int fd, int argc, char *argv[])
if (ast_lock_contexts()) {
ast_cli(fd, "Failed to lock contexts list\n");
ast_mutex_unlock(&save_dialplan_lock);
- if (cfg)
- ast_destroy(cfg);
return RESULT_FAILURE;
}
@@ -962,8 +955,6 @@ static int handle_save_dialplan(int fd, int argc, char *argv[])
filename);
ast_unlock_contexts();
ast_mutex_unlock(&save_dialplan_lock);
- if (cfg)
- ast_destroy(cfg);
return RESULT_FAILURE;
}
@@ -972,15 +963,6 @@ static int handle_save_dialplan(int fd, int argc, char *argv[])
static_config ? "yes" : "no",
write_protect_config ? "yes" : "no");
- var = ast_variable_walk(cfg, "globals");
- if (var) {
- fprintf(output, "[globals]\n");
- while(var) {
- fprintf(output, "%s => %s", var->name, var->value);
- var = var->next;
- }
- }
-
/* walk all contexts */
c = ast_walk_contexts(NULL);
while (c) {
@@ -1097,8 +1079,6 @@ static int handle_save_dialplan(int fd, int argc, char *argv[])
ast_unlock_contexts();
ast_mutex_unlock(&save_dialplan_lock);
fclose(output);
- if (cfg)
- ast_destroy(cfg);
if (incomplete) {
ast_cli(fd, "Saved dialplan is incomplete\n");