strongswan.org
Wiki/Project Management
Downloads
Gitweb
projects
/
strongswan.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
12e64e5
)
fast: Use correct printf specifier to print content length
author
Tobias Brunner
<tobias@strongswan.org>
Tue, 7 May 2019 12:48:19 +0000
(14:48 +0200)
committer
Tobias Brunner
<tobias@strongswan.org>
Wed, 8 May 2019 12:48:54 +0000
(14:48 +0200)
src/libfast/fast_request.c
patch
|
blob
|
history
diff --git
a/src/libfast/fast_request.c
b/src/libfast/fast_request.c
index
0543215
..
5f6e392
100644
(file)
--- a/
src/libfast/fast_request.c
+++ b/
src/libfast/fast_request.c
@@
-25,6
+25,7
@@
#include <unistd.h>
#include <sys/stat.h>
#include <fcntl.h>
+#include <inttypes.h>
#include <ClearSilver/ClearSilver.h>
@@
-303,7
+304,7
@@
METHOD(fast_request_t, sendfile, bool,
return FALSE;
}
/* FCGX does not like large integers, print to a buffer using libc */
- snprintf(buf, sizeof(buf), "%
lld"
, (int64_t)data->len);
+ snprintf(buf, sizeof(buf), "%
"PRId64
, (int64_t)data->len);
FCGX_FPrintF(this->req.out, "Content-Length: %s\n", buf);
if (mime)
{