summaryrefslogtreecommitdiff
path: root/src/shared/udev-util.h
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-02-23 03:16:44 -0500
committerSven Eden <yamakuzure@gmx.net>2017-07-25 09:44:34 +0200
commit1595204336031d6f2b5e77ce50d87bf0d8281da6 (patch)
tree55237fe9bd72477eb4be8941e50cfc7cc8753871 /src/shared/udev-util.h
parent7a65c7a2257c398113531ee614cda06ea007146c (diff)
Rip out setting of the log level from udev_new and put it in a new function
This function is internal to elogind code, so external users of libudev will not see those log messages. I think this is better. If we want to allow that, the function could be put in libudev and exported. v2: check that the string is more than one char before stripping quotes
Diffstat (limited to 'src/shared/udev-util.h')
-rw-r--r--src/shared/udev-util.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shared/udev-util.h b/src/shared/udev-util.h
index d76ff5286..bbbdd7b95 100644
--- a/src/shared/udev-util.h
+++ b/src/shared/udev-util.h
@@ -50,3 +50,5 @@ DEFINE_TRIVIAL_CLEANUP_FUNC(struct udev_monitor*, udev_monitor_unref);
#endif // 0
#define _cleanup_udev_monitor_unref_ _cleanup_(udev_monitor_unrefp)
#define _cleanup_udev_list_cleanup_ _cleanup_(udev_list_cleanup)
+
+int udev_parse_config(void);