diff options
author | Michael Larson <slioch@slioch.vyatta.com> | 2010-07-19 15:05:05 -0700 |
---|---|---|
committer | Michael Larson <slioch@slioch.vyatta.com> | 2010-07-19 15:05:05 -0700 |
commit | 09c2415650e67e631f7b9fcad49bdd9a0b035698 (patch) | |
tree | 020b7bd407be58d1ffed24cd690a498674daeaea /src/exe_action.c | |
parent | 97d8757a2fe575b2aba258859c8df37ca9ed7cf6 (diff) | |
download | vyatta-cfg-09c2415650e67e631f7b9fcad49bdd9a0b035698.tar.gz vyatta-cfg-09c2415650e67e631f7b9fcad49bdd9a0b035698.zip |
modified syntax and commit checks now applied during commit.
modification allows for error statement to be placed after location of error node.
Diffstat (limited to 'src/exe_action.c')
-rw-r--r-- | src/exe_action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exe_action.c b/src/exe_action.c index f8920e1..b650a4f 100644 --- a/src/exe_action.c +++ b/src/exe_action.c @@ -100,7 +100,7 @@ main(int argc, char** argv) //BROKEN--NEEDS TO BE FIX BELOW FOR DPATH AND CPATH common_set_context(path,path); - status = execute_list(def.actions[act].vtw_list_head,&def); + status = execute_list(def.actions[act].vtw_list_head,&def,NULL); if (status == FALSE) { printf("command failed! status: %d\n", status); } |