Whamcloud - gitweb
debugfs: be more specific in error messages
authorAaron Crane <arc@aaroncrane.co.uk>
Mon, 4 Aug 2014 01:51:04 +0000 (21:51 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Mon, 4 Aug 2014 22:58:23 +0000 (18:58 -0400)
Signed-off-by: Aaron Crane <arc@aaroncrane.co.uk>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
debugfs/dump.c

index 51bc734..f4f1625 100644 (file)
@@ -272,12 +272,12 @@ static void rdump_inode(ext2_ino_t ino, struct ext2_inode *inode,
                int fd;
                fd = open(fullname, O_WRONLY | O_CREAT | O_TRUNC | O_LARGEFILE, S_IRWXU);
                if (fd == -1) {
-                       com_err("rdump", errno, "while dumping %s", fullname);
+                       com_err("rdump", errno, "while opening %s", fullname);
                        goto errout;
                }
                dump_file("rdump", ino, fd, 1, fullname);
                if (close(fd) != 0) {
-                       com_err("rdump", errno, "while dumping %s", fullname);
+                       com_err("rdump", errno, "while closing %s", fullname);
                        goto errout;
                }
        }