https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=236663
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #2 from [email protected] --- It's nothing to do with stdin. echo(1) adds a newline (unless you `echo -n`); you're hashing a different string. % printf "abc" | md5 900150983cd24fb0d6963f7d28e17f72 % printf "abc\n" | md5 0bee89b07a248e27c83fc3d5951213c1 -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "[email protected]"
