projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c2bbb5
)
David Kimdon <dwhedon@instant802.com> noticed a thinko
author
Eric Andersen
<andersen@codepoet.org>
Sat, 17 Nov 2001 04:16:15 +0000
(
04:16
-0000)
committer
Eric Andersen
<andersen@codepoet.org>
Sat, 17 Nov 2001 04:16:15 +0000
(
04:16
-0000)
in md5sum where only binary sums were verified. He also
sent in this patch,
-Erik
coreutils/md5sum.c
patch
|
blob
|
history
diff --git
a/coreutils/md5sum.c
b/coreutils/md5sum.c
index bb4d115ca0d3308bc6187897effc0a883ba7c1af..83c769ef2304afb82c8057de6e9a13c719a71e8b 100644
(file)
--- a/
coreutils/md5sum.c
+++ b/
coreutils/md5sum.c
@@
-699,12
+699,12
@@
static int split_3(char *s,
s[i++] = '\0';
- if (s[i] != ' ' && s[i
++
] != '*')
+ if (s[i] != ' ' && s[i] != '*')
return FALSE;
/* All characters between the type indicator and end of line are
significant -- that includes leading and trailing white space. */
- *w = &s[i];
+ *w = &s[
++
i];
if (escaped_filename) {
/* Translate each `\n' string in the file name to a NEWLINE,