bug fix in timeout config

This commit is contained in:
Robert Johansson 2013-08-30 00:20:35 +09:00
parent fd5c9adffb
commit 654905a94d

View File

@ -258,7 +258,7 @@ mbus_tcp_set_timeout_set(double seconds)
} }
tcp_timeout_sec = (int)seconds; tcp_timeout_sec = (int)seconds;
tcp_timeout_sec = (seconds - tcp_timeout_sec) * 1000000; tcp_timeout_usec = (seconds - tcp_timeout_sec) * 1000000;
return 0; return 0;
} }