summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorAn-Cheng Huang <ancheng@vyatta.com>2010-08-23 14:48:42 -0700
committerAn-Cheng Huang <ancheng@vyatta.com>2010-08-23 14:48:42 -0700
commit46043b24caf3ccbaeef3fdfaeb7edcc6c99e6a58 (patch)
tree973381f2ea2fbc4d43287e1f9e5a1d445dfe527d /src/common
parentf15df25b9693b8802912ddd24f7f8aeaa2893380 (diff)
downloadvyatta-cfg-46043b24caf3ccbaeef3fdfaeb7edcc6c99e6a58.tar.gz
vyatta-cfg-46043b24caf3ccbaeef3fdfaeb7edcc6c99e6a58.zip
move "changed" status handling into library
* remove public status modifier as high-level operations no longer need it. * add more information to clarify changed status handling in library. * mark changed status at appropriate places in library.
Diffstat (limited to 'src/common')
-rw-r--r--src/common/unionfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/unionfs.c b/src/common/unionfs.c
index 85ea9f1..da4cd7e 100644
--- a/src/common/unionfs.c
+++ b/src/common/unionfs.c
@@ -730,7 +730,7 @@ common_commit_copy_to_live_config(GNode *node, boolean suppress_piecewise_copy,
/* note: return status is not checked and operation continues even if
* this fails. this follows the original logic.
*/
- cstore_unmark_cfg_path_changed(cs, pcomps, ncomps);
+ cstore_unmark_cfg_path_changed(cs, (const char **) pcomps, ncomps);
cstore_free_path_comps(pcomps, ncomps);
cstore_free(cs);
}