You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
7 years ago
|
From 7e3eded57f77a606f173d6ede51585178ac3f9ee Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Nikola=20Forr=C3=B3?= <nforro@redhat.com>
|
||
|
Date: Tue, 24 Jan 2017 15:46:31 +0100
|
||
|
Subject: [PATCH] src/api.c: Fix level of warning messages informing about
|
||
|
failed user/group lookup
|
||
|
|
||
|
---
|
||
|
src/api.c | 4 ++--
|
||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/src/api.c b/src/api.c
|
||
|
index 2102c13..931fb3e 100644
|
||
|
--- a/src/api.c
|
||
|
+++ b/src/api.c
|
||
|
@@ -639,7 +639,7 @@ static int cgroup_parse_rules(bool cache, uid_t muid,
|
||
|
uid = CGRULE_INVALID;
|
||
|
gid = grp->gr_gid;
|
||
|
} else {
|
||
|
- cgroup_dbg("Warning: Entry for %s not"
|
||
|
+ cgroup_warn("Warning: Entry for %s not"
|
||
|
"found. Skipping rule on line"
|
||
|
" %d.\n", itr, linenum);
|
||
|
skipped = true;
|
||
|
@@ -656,7 +656,7 @@ static int cgroup_parse_rules(bool cache, uid_t muid,
|
||
|
uid = pwd->pw_uid;
|
||
|
gid = CGRULE_INVALID;
|
||
|
} else {
|
||
|
- cgroup_dbg("Warning: Entry for %s not"
|
||
|
+ cgroup_warn("Warning: Entry for %s not"
|
||
|
"found. Skipping rule on line"
|
||
|
" %d.\n", user, linenum);
|
||
|
skipped = true;
|
||
|
--
|
||
|
2.7.4
|
||
|
|