made the timestamps local instead of universal in client_test

This commit is contained in:
Arvid Norberg 2007-03-16 23:24:30 +00:00
parent 81ad74cbcd
commit d08ca8c4e6
1 changed files with 1 additions and 1 deletions

View File

@ -777,7 +777,7 @@ int main(int ac, char* av[])
// loop through the alert queue to see if anything has happened.
std::auto_ptr<alert> a;
a = ses.pop_alert();
std::string now = to_simple_string(second_clock::universal_time());
std::string now = to_simple_string(second_clock::local_time());
while (a.get())
{
std::stringstream event_string;