From 8c6fa2273003a7f43c4c2795baa8fff06ddad3ff Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Sat, 31 Aug 2024 20:10:13 +0100 Subject: [PATCH] Fix signal logging. --- DAPNETGateway.cpp | 2 ++ Version.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/DAPNETGateway.cpp b/DAPNETGateway.cpp index 71e8ee1..0ebafcd 100644 --- a/DAPNETGateway.cpp +++ b/DAPNETGateway.cpp @@ -122,6 +122,8 @@ int main(int argc, char** argv) delete gateway; switch (m_signal) { + case 0: + break; case 2: ::LogInfo("DAPNETGateway-%s exited on receipt of SIGINT", VERSION); break; diff --git a/Version.h b/Version.h index 697b855..f5831c7 100644 --- a/Version.h +++ b/Version.h @@ -19,6 +19,6 @@ #if !defined(VERSION_H) #define VERSION_H -const char* VERSION = "20240129"; +const char* VERSION = "20240831"; #endif