diff options
author | Alexander Barkov <bar@mnogosearch.org> | 2014-03-07 10:34:07 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mnogosearch.org> | 2014-03-07 10:34:07 +0400 |
commit | fe3c68b38df1a9bd52fc27b9b05eb200d9e8bfc9 (patch) | |
tree | fe7d96dff94e4c75dce99ef795ef78c8adc635d6 /sql/nt_servc.cc | |
parent | 89e171535563dcdf1eeb309e54abc4da2f5dd539 (diff) | |
download | mariadb-git-fe3c68b38df1a9bd52fc27b9b05eb200d9e8bfc9.tar.gz |
Do not use SECONDS_IN_24H in nt_servc.cc.
This constant uses my_time.h, which inclusion is not desirable in nt_servc.cc
Diffstat (limited to 'sql/nt_servc.cc')
-rw-r--r-- | sql/nt_servc.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/nt_servc.cc b/sql/nt_servc.cc index c81bcef0316..d6a8eac7ed5 100644 --- a/sql/nt_servc.cc +++ b/sql/nt_servc.cc @@ -33,7 +33,7 @@ NTService::NTService() //time-out variables nStartTimeOut = 15000; - nStopTimeOut = SECONDS_IN_24H * 1000; + nStopTimeOut = 86400000; nPauseTimeOut = 5000; nResumeTimeOut = 5000; |