24 lines
940 B
Diff
24 lines
940 B
Diff
|
From 69dd93bbe3444dc583581d59389567ab7d59bd6a Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
|
||
|
Date: Sat, 14 Mar 2015 22:56:01 -0400
|
||
|
Subject: [PATCH] sysctl: tweak debug message
|
||
|
|
||
|
(cherry picked from commit 924bc14fef39373f4523664207007a6c82c2b2d5)
|
||
|
---
|
||
|
src/sysctl/sysctl.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/src/sysctl/sysctl.c b/src/sysctl/sysctl.c
|
||
|
index 2415d84526..98b146a9ab 100644
|
||
|
--- a/src/sysctl/sysctl.c
|
||
|
+++ b/src/sysctl/sysctl.c
|
||
|
@@ -121,7 +121,7 @@ static int parse_file(Hashmap *sysctl_options, const char *path, bool ignore_eno
|
||
|
return log_error_errno(r, "Failed to open file '%s', ignoring: %m", path);
|
||
|
}
|
||
|
|
||
|
- log_debug("parse: %s", path);
|
||
|
+ log_debug("Parsing %s", path);
|
||
|
while (!feof(f)) {
|
||
|
char l[LINE_MAX], *p, *value, *new_value, *property, *existing;
|
||
|
void *v;
|