From 8f40328df3673b9ec097bb9e985314b39e679ace Mon Sep 17 00:00:00 2001
From: Evgeny Grin <k2k@narod.ru>
Date: Sun, 21 May 2023 14:06:39 +0300
Subject: [PATCH] FTBFS without ext2fs attributes support
---
src/filemanager/info.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/filemanager/info.c b/src/filemanager/info.c
index 99d15848b..987a1900c 100644
a
|
b
|
info_show_info (WInfo * info) |
265 | 265 | |
266 | 266 | vpath = vfs_path_from_str (current_panel->dir.list[current_panel->selected].fname->str); |
267 | 267 | |
| 268 | #ifdef ENABLE_EXT2FS_ATTR |
268 | 269 | if (mc_fgetflags (vpath, &attr) == 0) |
269 | 270 | tty_printf (_("Attributes: %s"), chattr_get_as_str (attr)); |
270 | 271 | else |
| 272 | #endif |
271 | 273 | tty_print_string (_("Attributes: unavailable")); |
272 | 274 | |
273 | 275 | vfs_path_free (vpath, TRUE); |