summaryrefslogtreecommitdiff
path: root/src/driver/slbt_driver_ctx.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/driver/slbt_driver_ctx.c')
-rw-r--r--src/driver/slbt_driver_ctx.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c
index 8d8faa9..44e92c8 100644
--- a/src/driver/slbt_driver_ctx.c
+++ b/src/driver/slbt_driver_ctx.c
@@ -874,6 +874,16 @@ int slbt_get_driver_ctx(
cctx.drvflags |= SLBT_DRIVER_FEATURES;
break;
+ case TAG_LEGABITS:
+ if (!entry->arg)
+ cctx.drvflags |= SLBT_DRIVER_LEGABITS;
+
+ else if (!strcmp("enabled",entry->arg))
+ cctx.drvflags |= SLBT_DRIVER_LEGABITS;
+
+ else
+ cctx.drvflags &= ~(uint64_t)SLBT_DRIVER_LEGABITS;
+
case TAG_WARNINGS:
if (!strcmp("all",entry->arg))
cctx.warnings = SLBT_WARNING_LEVEL_ALL;