diff options
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/md5/md5.1 | 2 | ||||
-rw-r--r-- | sbin/md5/md5.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sbin/md5/md5.1 b/sbin/md5/md5.1 index 5bf3fc6..c3c3e50 100644 --- a/sbin/md5/md5.1 +++ b/sbin/md5/md5.1 @@ -41,7 +41,7 @@ Echo stdin to stdout and appends the MD5 sum to stdout. .It Fl r Reverses the format of the output. This helps with visual diffs. Does nothing when combined with the -.Fl stpx +.Fl ptx options. .It Fl t Run a built-in time trial. diff --git a/sbin/md5/md5.c b/sbin/md5/md5.c index 43bb580..c20d659 100644 --- a/sbin/md5/md5.c +++ b/sbin/md5/md5.c @@ -114,7 +114,7 @@ MDString(string) char buf[33]; if (rflag) - printf("%s (\"%s\")\n", MD5Data(string, len, buf), string); + printf("%s \"%s\"\n", MD5Data(string, len, buf), string); else printf("MD5 (\"%s\") = %s\n", string, MD5Data(string, len, buf)); } |