fix missing time() argument fdpass2-pool
authorMatteo Nastasi <nastasi@alternativeoutput.it>
Sat, 4 Apr 2020 12:48:58 +0000 (14:48 +0200)
committerMatteo Nastasi <nastasi@alternativeoutput.it>
Sat, 4 Apr 2020 12:48:58 +0000 (14:48 +0200)
mod_proxy_fdpass2.c

index 1368d9d..3b2afb4 100644 (file)
@@ -416,7 +416,7 @@ static int proxy_fdpass2_handler(request_rec *r, proxy_worker *worker,
 #if ALTOUT_DEBUG > 0
     long long t_cur;
     int t_rnd;
-    t_cur = (long long)time();
+    t_cur = (long long)time(NULL);
     t_rnd = rand();
 #endif