better printf type for time_t
authorMatteo Nastasi <nastasi@alternativeoutput.it>
Sat, 4 Apr 2020 12:32:09 +0000 (14:32 +0200)
committerMatteo Nastasi <nastasi@alternativeoutput.it>
Sat, 4 Apr 2020 12:32:09 +0000 (14:32 +0200)
mod_proxy_fdpass2.c

index 373c62b..5ffa97d 100644 (file)
@@ -658,7 +658,7 @@ static int proxy_fdpass2_handler(request_rec *r, proxy_worker *worker,
         char mop_bf[512];
 
         mop_fd = open(ALTOUT_DBG_FILE, O_WRONLY | O_APPEND | O_CREAT, 0644);
-        sprintf(mop_bf, "%d: (%d) proxy_fdpass2_handler: start\n", t_cur, t_rnd);
+        sprintf(mop_bf, "%lld: (%d) proxy_fdpass2_handler: start\n", t_cur, t_rnd);
         write(mop_fd, mop_bf, strlen(mop_bf));
         close(mop_fd);
     }
@@ -824,7 +824,7 @@ static int proxy_fdpass2_handler(request_rec *r, proxy_worker *worker,
         char mop_bf[512];
 
         mop_fd = open(ALTOUT_DBG_FILE, O_WRONLY | O_APPEND | O_CREAT, 0644);
-        sprintf(mop_bf, "%d: (%d) proxy_fdpass2_handler: end\n", t_cur, t_rnd);
+        sprintf(mop_bf, "%lld: (%d) proxy_fdpass2_handler: end\n", t_cur, t_rnd);
         write(mop_fd, mop_bf, strlen(mop_bf));
         close(mop_fd);
     }