[PATCH 1/3] Fix for ext3 from Aurora SRPM
"Horst H. von Brand" <[email protected]> Tue, 26 Feb 2008 13:32:57 -0300
| Newsgroups | gmane.linux.aurora.devel,gmane.linux.ports.sparc |
|---|---|
| Message-ID | <[email protected]> |
Signed-off-by: Horst H. von Brand <[email protected]> --- second/fs/ext2.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/second/fs/ext2.c b/second/fs/ext2.c index 028f77e..57f5e9a 100644 --- a/second/fs/ext2.c +++ b/second/fs/ext2.c @@ -42,14 +42,14 @@ static void ext2fs_error (int errcode) return; } #endif - printf ("Unknown ext2 error"); + printf ("Unknown ext2 error: %d", errcode); } static int open_ext2 (char *device) { int retval; - retval = ext2fs_open (device, EXT2_FLAG_RW, 0, 0, silo_io_manager, &fs); + retval = ext2fs_open (device, EXT2_FLAG_DIRTY, 0, 0, silo_io_manager, &fs); if (retval == EXT2_ET_BAD_MAGIC) return 0; if (retval) { -- 1.5.4.3.220.g99d8e _______________________________________________ Aurora-sparc-devel mailing list [email protected] http://lists.auroralinux.org/mailman/listinfo/aurora-sparc-devel Aurora FAQ: http://www.ecs.soton.ac.uk/~mas01r/aurorafaq.html