projects
/
project
/
firewall3.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
06fa692
)
defaults: fix check_kmod() function
author
Jo-Philipp Wich
<jo@mein.io>
Mon, 13 Aug 2018 11:58:22 +0000
(13:58 +0200)
committer
Jo-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
patch
|
blob
|
history
diff --git
a/defaults.c
b/defaults.c
index 44fe6299a6bffa46474be0c7829e994d461f4426..91bd61712f6276cca6721a780247a6551becfa13 100644
(file)
--- a/
defaults.c
+++ b/
defaults.c
@@
-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;
}