diff options
-rw-r--r-- | src/common/defs.h | 1 | ||||
-rw-r--r-- | src/common/unionfs.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/common/defs.h b/src/common/defs.h index 50d2337..5fee3ca 100644 --- a/src/common/defs.h +++ b/src/common/defs.h @@ -54,6 +54,7 @@ remove _actions and rely on def in the future. struct Config { boolean _multi; + unsigned long _priority; vtw_def _def; //keep this here char* _help; char* _default; diff --git a/src/common/unionfs.c b/src/common/unionfs.c index 35be6ec..3f845df 100644 --- a/src/common/unionfs.c +++ b/src/common/unionfs.c @@ -231,6 +231,7 @@ retrieve_data(char* rel_data_path, GNode *node, char* root, NODE_OPERATION op) } //either multi or tag--shouldn't have made a difference, but arkady was confused. vn->_config._multi = (def.tag | def.multi); + vn->_priority = def.def_priority; } } |