projects
/
mod-proxy-fdpass.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
48e09a5
)
time() casting for sprintf
author
Matteo Nastasi
<nastasi@alternativeoutput.it>
Sat, 4 Apr 2020 12:47:21 +0000
(14:47 +0200)
committer
Matteo Nastasi
<nastasi@alternativeoutput.it>
Sat, 4 Apr 2020 12:47:21 +0000
(14:47 +0200)
mod_proxy_fdpass2.c
patch
|
blob
|
history
diff --git
a/mod_proxy_fdpass2.c
b/mod_proxy_fdpass2.c
index
361bd9c
..
1368d9d
100644
(file)
--- a/
mod_proxy_fdpass2.c
+++ b/
mod_proxy_fdpass2.c
@@
-414,9
+414,9
@@
static int proxy_fdpass2_handler(request_rec *r, proxy_worker *worker,
rv = get_socket_from_path(r, r->pool, url, &sock);
#if ALTOUT_DEBUG > 0
-
time_t
t_cur;
+
long long
t_cur;
int t_rnd;
- t_cur = time();
+ t_cur =
(long long)
time();
t_rnd = rand();
#endif