data in md5sum, it may not be NULL terminated.
+Mon Mar 8 18:55:13 GMT 2004 Brian M. Carlson <sandals@crustytoothpaste.ath.cx>
+
+ * utils/md5sum.c: Don't print offending lines as they may not be NULL
+ terminated.
+
Mon Mar 8 18:34:16 GMT 2004 Goswin Brederlow <brederlo@informatik.uni-tuebingen.de>
* lib/parse.c, main/processarc.c: Store Architecture in the status file
Andrew Hobson <ahobson@eng.mindspring.net>
Ben Collins <bcollins@debian.org>
Branko Lankester
+Brian M. Carlson <sandals@crustytoothpaste.ath.cx>
Bruce Perens <bruce@pixar.com>
Carl Streeter <streeter@cae.wisc.edu>
Carlos Laviola <claviola@brfree.com.br>
* Fix dpkg-buildpackage when used with PGP. Closes: #232916.
* Update support for Debian FreeBSD. Closes: #211566.
* Store Architecture in the status file. Closes: #228253.
+ * Don't print offending lines in md5sum. Closes: #170953.
-- Scott James Remnant <scott@netsplit.com> UNRELEASED
else if (*p == '*')
rc = 2;
else {
- fprintf(stderr, _("%s: unrecognized line: %s"), progname, buf);
+ /* Don't print the buffer; we might be dealing with a
+ * non-text file.
+ */
+ fprintf(stderr, _("%s: unrecognized line\n"), progname);
return 0;
}
++p;