From 6376f0dd27115ae9951267c8f1313b498d439ba1 Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 6 Mar 2016 14:26:36 -0500 Subject: driver: added context initialization for --warnings. --- src/driver/slbt_driver_ctx.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src') diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c index 53cbcf8..319678b 100644 --- a/src/driver/slbt_driver_ctx.c +++ b/src/driver/slbt_driver_ctx.c @@ -174,6 +174,17 @@ int slbt_get_driver_ctx( case TAG_FEATURES: cctx.drvflags |= SLBT_DRIVER_FEATURES; break; + + case TAG_WARNINGS: + if (!strcmp("all",entry->arg)) + cctx.tag = SLBT_WARNING_LEVEL_ALL; + + else if (!strcmp("error",entry->arg)) + cctx.tag = SLBT_WARNING_LEVEL_ERROR; + + else if (!strcmp("none",entry->arg)) + cctx.tag = SLBT_WARNING_LEVEL_NONE; + break; } } else nunits++; -- cgit v1.2.3