Skip to content
This repository has been archived by the owner on Dec 25, 2019. It is now read-only.
/ ntUPSd Public archive

Commit

Permalink
Merge branch 'hotfix/0.0.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Holder committed Apr 12, 2016
2 parents cb4df71 + 9aa1d66 commit 84450f9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ntUPSd.Core/ntUPSd.Socket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ namespace CTL
if (hCancelEvent != NULL)
{
#pragma warning(suppress: 6387) // Checked after construction.
::ATL::CHandle hReadEvent(::CreateEvent(nullptr, TRUE, FALSE, nullptr));
::ATL::CHandle hReadEvent(::CreateEvent(nullptr, FALSE, FALSE, nullptr));
if (hReadEvent == NULL)
{
hr = ::ATL::AtlHresultFromLastError();
Expand Down
8 changes: 4 additions & 4 deletions ntUPSd/ServerVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SO
*/
#pragma once

#define PRODUCT_VERSION_PARTS 0,0,2
#define PRODUCT_VERSION "0.0.2"
#define PRODUCT_VERSION_PARTS 0,0,3
#define PRODUCT_VERSION "0.0.3"
#define PRODUCT_NAME "Network UPS Tools Services v" PRODUCT_VERSION

#define DAEMON_VERSION_PARTS 0,0,2
#define DAEMON_VERSION "0.0.2"
#define DAEMON_VERSION_PARTS 0,0,3
#define DAEMON_VERSION "0.0.3"
#define DAEMON_NAME "Network UPS Tools Daemon v" DAEMON_VERSION

#define COMPANY_NAME "Matthew Holder"
Expand Down

0 comments on commit 84450f9

Please sign in to comment.