This patch allows -q to silence the output of the credits information. Signed-off-by: Jeff Mahoney <jeffm@xxxxxxxx> --- mkreiserfs/mkreiserfs.c | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) --- a/mkreiserfs/mkreiserfs.c 2004-09-30 17:04:21.000000000 -0400 +++ b/mkreiserfs/mkreiserfs.c 2008-01-24 13:38:26.000000000 -0500 @@ -656,8 +656,10 @@ int main (int argc, char **argv) print_banner (program_name); - misc_print_credit(stdout); - printf("\n"); + if (!(mode & QUIET_MODE)) { + misc_print_credit(stdout); + printf("\n"); + } if (mode & QUIET_MODE) fclose(stdout); @@ -740,7 +742,6 @@ int main (int argc, char **argv) invalidate_other_formats (fs->fs_dev); - zero_journal (fs); reiserfs_close (fs); @@ -751,11 +752,7 @@ int main (int argc, char **argv) if (mode & DEBUG_MODE) return 0; - - printf("\nTell your friends to use a kernel based on 2.4.18 or " - "later, and especially not a\nkernel based on 2.4.9, " - "when you use reiserFS. Have fun.\n\n"); - + printf("ReiserFS is successfully created on %s.\n", device_name); return 0; - To unsubscribe from this list: send the line "unsubscribe reiserfs-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html