Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 290788
Collapse All | Expand All

(-)daemons/dmeventd/plugins/mirror/dmeventd_mirror.c (+1 lines)
Lines 128-133 Link Here
128
128
129
static void _temporary_log_fn(int level, const char *file __attribute((unused)),
129
static void _temporary_log_fn(int level, const char *file __attribute((unused)),
130
			      int line __attribute((unused)),
130
			      int line __attribute((unused)),
131
			      int dm_err __attribute((unused)),
131
			      const char *format)
132
			      const char *format)
132
{
133
{
133
	if (!strncmp(format, "WARNING: ", 9) && (level < 5))
134
	if (!strncmp(format, "WARNING: ", 9) && (level < 5))
(-)daemons/dmeventd/plugins/snapshot/dmeventd_snapshot.c (+1 lines)
Lines 57-62 Link Here
57
static void _temporary_log_fn(int level,
57
static void _temporary_log_fn(int level,
58
			      const char *file __attribute((unused)),
58
			      const char *file __attribute((unused)),
59
			      int line __attribute((unused)),
59
			      int line __attribute((unused)),
60
			      int dm_err __attribute((unused)),
60
			      const char *format)
61
			      const char *format)
61
{
62
{
62
	if (!strncmp(format, "WARNING: ", 9) && (level < 5))
63
	if (!strncmp(format, "WARNING: ", 9) && (level < 5))
(-)tools/lvm2cmd.h (+1 lines)
Lines 18-23 Link Here
18
18
19
#ifndef _LVM_LOG_H
19
#ifndef _LVM_LOG_H
20
typedef void (*lvm2_log_fn_t) (int level, const char *file, int line,
20
typedef void (*lvm2_log_fn_t) (int level, const char *file, int line,
21
				   int dmerr,
21
			       const char *message);
22
			       const char *message);
22
#endif
23
#endif
23
24

Return to bug 290788