Blame SOURCES/0149-libmount-fix-debug-message.patch
|
|
5f5089 |
From c817652429d4326bb43a8d975611927170447805 Mon Sep 17 00:00:00 2001
|
|
|
5f5089 |
From: Karel Zak <kzak@redhat.com>
|
|
|
5f5089 |
Date: Thu, 1 Feb 2018 16:52:14 +0100
|
|
|
5f5089 |
Subject: [PATCH] libmount: fix debug message
|
|
|
5f5089 |
|
|
|
5f5089 |
Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=1534893
|
|
|
5f5089 |
Upstream: http://github.com/karelzak/util-linux/commit/b058f473d175450c48a65031f1abc8d8b90b2b7b
|
|
|
5f5089 |
Signed-off-by: Karel Zak <kzak@redhat.com>
|
|
|
5f5089 |
---
|
|
|
5f5089 |
libmount/src/fs.c | 2 +-
|
|
|
5f5089 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
5f5089 |
|
|
|
5f5089 |
diff --git a/libmount/src/fs.c b/libmount/src/fs.c
|
|
|
5f5089 |
index e46ee0c0e..e5c38c1b6 100644
|
|
|
5f5089 |
--- a/libmount/src/fs.c
|
|
|
5f5089 |
+++ b/libmount/src/fs.c
|
|
|
5f5089 |
@@ -1451,7 +1451,7 @@ int mnt_fs_print_debug(struct libmnt_fs *fs, FILE *file)
|
|
|
5f5089 |
{
|
|
|
5f5089 |
if (!fs || !file)
|
|
|
5f5089 |
return -EINVAL;
|
|
|
5f5089 |
- fprintf(file, "------ fs\n");
|
|
|
5f5089 |
+ fprintf(file, "------ fs:\n");
|
|
|
5f5089 |
fprintf(file, "source: %s\n", mnt_fs_get_source(fs));
|
|
|
5f5089 |
fprintf(file, "target: %s\n", mnt_fs_get_target(fs));
|
|
|
5f5089 |
fprintf(file, "fstype: %s\n", mnt_fs_get_fstype(fs));
|
|
|
5f5089 |
--
|
|
|
5f5089 |
2.14.3
|
|
|
5f5089 |
|