summaryrefslogtreecommitdiff
path: root/udevsend.c
diff options
context:
space:
mode:
Diffstat (limited to 'udevsend.c')
-rw-r--r--udevsend.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/udevsend.c b/udevsend.c
index b2fbcbbca6..c738fe2245 100644
--- a/udevsend.c
+++ b/udevsend.c
@@ -40,12 +40,17 @@
#include "udevd.h"
#include "logging.h"
+#ifdef LOG
unsigned char logname[42];
-
-int log_ok(void)
+void log_message (int level, const char *format, ...)
{
- return 1;
+ va_list args;
+
+ va_start(args, format);
+ vsyslog(level, format, args);
+ va_end(args);
}
+#endif
static inline char *get_action(void)
{