2008-08-23 11:17:43

by Manish Katiyar

[permalink] [raw]
Subject: [PATCH] ext2ed : Remove masix support.

Ted,
I was not sure if I should change it to EXT2_OBSO_OS_MASIX as it is
currently defined in ext2_fs.h. Let me know if you think
that is the correct way to fix it, will redo the patch.

Compilation of ext2ed fails with below error message since masix
support has been removed from lib/ext2fs.
super_com.c: In function 'type_ext2_super_block___show':
super_com.c:104: error: 'EXT2_OS_MASIX' undeclared (first use in this function)
super_com.c:104: error: (Each undeclared identifier is reported only once
super_com.c:104: error: for each function it appears in.)
make: *** [super_com.o] Error 1

Below patch removes support for masix from ext2ed.

Signed-off-by: "Manish Katiyar" <[email protected]>

---
ext2ed/super_com.c | 4 ----
1 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/ext2ed/super_com.c b/ext2ed/super_com.c
index 0541ff3..ec48351 100644
--- a/ext2ed/super_com.c
+++ b/ext2ed/super_com.c
@@ -101,10 +101,6 @@ void type_ext2_super_block___show (char *command_line)
wprintw (show_pad,"Hurd");
break;

- case EXT2_OS_MASIX:
- wprintw (show_pad,"Masix");
- break;


2008-08-23 11:53:54

by Theodore Ts'o

[permalink] [raw]
Subject: Re: [PATCH] ext2ed : Remove masix support.

Thanks, applied.

- Ted