diff --git a/config.toml b/config.toml index 46b7b830..eba002d6 100644 --- a/config.toml +++ b/config.toml @@ -95,7 +95,7 @@ order = 'name:asc' # | size [[branches.tier.branch]] enabled = true name = 'branch1' -type = 'literal' +type = 'scan' path = '/mnt/branch1' mode = 'RW' [[branches.tier.branch]] @@ -110,6 +110,6 @@ if-not-mountpoint = 'fail' # 'fail' | 'deactivate' ? [[branches.tier.branch]] enabled = true name = 'branch0' -type = 'literal' +type = 'scan' path = 'foo' mode = 'RO' diff --git a/src/branch_tier.cpp b/src/branch_tier.cpp index 9f83f7ec..b7354ca4 100644 --- a/src/branch_tier.cpp +++ b/src/branch_tier.cpp @@ -43,7 +43,7 @@ namespace l load_branch_scan(toml::table const &v_, std::vector &branches_) { - assert("not currently supported" == NULL); + assert("not currently supported" != NULL); } }