@@ -324,8 +324,7 @@ show_instance_plain(parray *backup_list, bool show_name)
324324 char data_bytes_str [10 ] = "----" ;
325325
326326 if (backup -> recovery_time != (time_t ) 0 )
327- time2iso (timestamp , lengthof (timestamp ), backup -> recovery_time ,
328- true);
327+ time2iso (timestamp , lengthof (timestamp ), backup -> recovery_time );
329328 if (backup -> end_time != (time_t ) 0 )
330329 snprintf (duration , lengthof (duration ), "%.*lfs" , 0 ,
331330 difftime (backup -> end_time , backup -> start_time ));
@@ -453,12 +452,12 @@ show_instance_json(parray *backup_list)
453452 (uint32 ) (backup -> stop_lsn >> 32 ), (uint32 ) backup -> stop_lsn );
454453 json_add_value (buf , "stop-lsn" , lsn , json_level , true);
455454
456- time2iso (timestamp , lengthof (timestamp ), backup -> start_time , true );
455+ time2iso (timestamp , lengthof (timestamp ), backup -> start_time );
457456 json_add_value (buf , "start-time" , timestamp , json_level , true);
458457
459458 if (backup -> end_time )
460459 {
461- time2iso (timestamp , lengthof (timestamp ), backup -> end_time , true );
460+ time2iso (timestamp , lengthof (timestamp ), backup -> end_time );
462461 json_add_value (buf , "end-time" , timestamp , json_level , true);
463462 }
464463
@@ -467,8 +466,7 @@ show_instance_json(parray *backup_list)
467466
468467 if (backup -> recovery_time > 0 )
469468 {
470- time2iso (timestamp , lengthof (timestamp ), backup -> recovery_time ,
471- true);
469+ time2iso (timestamp , lengthof (timestamp ), backup -> recovery_time );
472470 json_add_value (buf , "recovery-time" , timestamp , json_level , true);
473471 }
474472
0 commit comments