Avoid a portability problem in the checksum test

String literals are not guaranteed to work like this.
https://bugzilla.gnome.org/show_bug.cgi?id=570572
This commit is contained in:
Matthias Clasen 2013-02-03 09:50:48 -05:00
parent abbb54cdd6
commit f802f467a5

View File

@ -18,8 +18,8 @@
* string is intentionally more than twice that length.
*/
#define FIXED_STR "The quick brown fox jumps over the lazy dog. Jackdaws love my big sphinx of quartz. Pack my box with five dozen liquor jugs. How razorback-jumping frogs can level six piqued gymnasts!"
#define FIXED_LEN (strlen (FIXED_STR))
static const char FIXED_STR[] = "The quick brown fox jumps over the lazy dog. Jackdaws love my big sphinx of quartz. Pack my box with five dozen liquor jugs. How razorback-jumping frogs can level six piqued gymnasts!";
#define FIXED_LEN (strlen (FIXED_STR))
const char *MD5_sums[] = {
"d41d8cd98f00b204e9800998ecf8427e",