Fix comment

master
Vitaliy Filippov 2014-01-12 20:59:14 +00:00
parent 36619470fe
commit c683b16f7e
1 changed files with 6 additions and 4 deletions

View File

@ -691,10 +691,12 @@ static int setup_patch_io(char *name, char *patch_file, io_manager *io_ptr)
set_patch_io_backing_manager(*io_ptr);
set_patch_io_patch_file(patch_file);
*io_ptr = patch_io_manager;
printf(_(
"To apply the inode change operation to the real filesystem"
" please run the command\n e2patch apply %s %s\n"
), name, patch_file);
printf(
"To make backup before applying changes run:\n"
" e2patch backup %s %s %s.backup\n"
"Then, to apply the inode change operation to the real filesystem run:\n"
" e2patch apply %s %s\n"
, name, patch_file, patch_file, name, patch_file);
return 0;
}