defaults: fix check_kmod() function
authorJo-Philipp Wich <jo@mein.io>
Mon, 13 Aug 2018 11:58:22 +0000 (13:58 +0200)
committerJo-Philipp Wich <jo@mein.io>
Mon, 13 Aug 2018 11:58:22 +0000 (13:58 +0200)
Fixes 06fa692 ("defaults: use a generic check_kmod() function")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
defaults.c

index 44fe6299a6bffa46474be0c7829e994d461f4426..91bd61712f6276cca6721a780247a6551becfa13 100644 (file)
@@ -103,7 +103,7 @@ check_kmod(struct uci_element *e, bool *module, const char *name)
                return;
        }
 
-       warn_elem(e, sprintf("requires module %s but missing kernel support, disabling", name));
+       warn_elem(e, "requires not available kernel module %s, disabling", name);
        *module = false;
 }