libmicrohttpd/libmicrohttpd_64bit_fix.patch
epienbro 7d9acc3df8 - Update to version 0.4.0a
- Drop upstreamed patch
- Added a new patch to fix a 64bit issue
- The -devel package now contains a pkgconfig file
- The configure script is now run with '--enable-messages --enable-https'
- Made the -doc subpackage noarch (F11+)
2009-02-27 22:43:35 +00:00

12 lines
511 B
Diff

--- src/testcurl/daemontest_large_put.c.orig 2009-02-27 22:58:16.926062599 +0100
+++ src/testcurl/daemontest_large_put.c 2009-02-27 22:58:20.776312622 +0100
@@ -274,7 +274,7 @@
1082,
NULL, NULL, &ahc_echo, &done_flag,
MHD_OPTION_CONNECTION_MEMORY_LIMIT,
- PUT_SIZE * 4, MHD_OPTION_END);
+ (size_t) PUT_SIZE * 4, MHD_OPTION_END);
if (d == NULL)
return 256;
c = curl_easy_init ();