From fe3c68b38df1a9bd52fc27b9b05eb200d9e8bfc9 Mon Sep 17 00:00:00 2001 From: Alexander Barkov Date: Fri, 7 Mar 2014 10:34:07 +0400 Subject: [PATCH] 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 --- sql/nt_servc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;