anitazha / rpms / systemd

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