From: Thomas Jarosch Date: Wed, 6 Oct 2010 12:36:26 +0000 (+0200) Subject: Variables modified inside signal handlers should be volatile X-Git-Tag: v1.1~91 X-Git-Url: http://developer.intra2net.com/git/?p=bpdyndnsd;a=commitdiff_plain;h=a292c8c410c54cf80694dfbf0a4d964462addc86 Variables modified inside signal handlers should be volatile --- diff --git a/src/main.cpp b/src/main.cpp index 8b038e0..6d00532 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -26,8 +26,8 @@ using namespace std; Updater::Ptr updater; -bool is_online = false; -bool webcheck_enabled = false; +volatile bool is_online = false; +volatile bool webcheck_enabled = false; /** * Checks if a bpdyndnsd process is already running.