Skip to content
Snippets Groups Projects
Commit e6461588 authored by Michael Gray's avatar Michael Gray
Browse files

Z:Protocol::Serialiser: use comma as <sec>,<usec> separator in request_time...

...to match header, and ZMap expectations.
parent 15fff883
No related branches found
No related tags found
No related merge requests found
......@@ -134,7 +134,7 @@ sub _timestamp {
return if $self->inhibit_timestamps;
my ($sec, $usec) = gettimeofday;
return ('request_time' => "$sec.$usec");
return ('request_time' => "$sec,$usec");
}
# Override in child class to turn off timestamps (in xml.t, for example).
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment