From: Jim Meyering Date: Wed, 23 Jul 2008 13:50:40 +0000 (+0200) Subject: dd: adjust --help output so help2man formats the man page properly X-Git-Tag: v7.0~121 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4fff95cfe1b1c11501759d8cb5386489628dfabb;p=platform%2Fupstream%2Fcoreutils.git dd: adjust --help output so help2man formats the man page properly * src/dd.c (usage): Use two spaces (not one) to separate "directory" from its description, so help2man formats the derived man page properly. --- diff --git a/src/dd.c b/src/dd.c index ead957464..5e3547d16 100644 --- a/src/dd.c +++ b/src/dd.c @@ -483,7 +483,7 @@ Each FLAG symbol may be:\n\ if (O_DIRECT) fputs (_(" direct use direct I/O for data\n"), stdout); if (O_DIRECTORY) - fputs (_(" directory fail unless a directory\n"), stdout); + fputs (_(" directory fail unless a directory\n"), stdout); if (O_DSYNC) fputs (_(" dsync use synchronized I/O for data\n"), stdout); if (O_SYNC)