Make `-r -s' also match the BSDI output.

This commit is contained in:
David E. O'Brien 1999-11-11 11:59:03 +00:00
parent 427ccf0071
commit 73fd27179f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=53092
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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));
}