revision 0.6r5 so we are in sync with other revision numbers; make compiler happier
authorChristian Herdtweck <christian.herdtweck@intra2net.com>
Fri, 19 Jun 2015 15:24:06 +0000 (17:24 +0200)
committerChristian Herdtweck <christian.herdtweck@intra2net.com>
Fri, 19 Jun 2015 15:24:53 +0000 (17:24 +0200)
CMakeLists.txt
src/dns/cname.h

index 2c44abe..c29c155 100644 (file)
@@ -1,7 +1,7 @@
 # project: definitions
 project(pingcheck)
 set(VERSION 0.6)
-set(VERSION_REVISION 4)
+set(VERSION_REVISION 5)
 set(TARGET ${PROJECT_NAME})
 
 # cmake: build options
index 883dc51..7a1010e 100644 (file)
@@ -39,7 +39,8 @@ struct Cname
     std::string Host;
     TimeToLive Ttl;
 
-    Cname()  {}
+    Cname()
+        : Host(""), Ttl( TimeToLive(0) ) {}
     Cname(const std::string &host, const uint32_t ttl)
         : Host(host), Ttl( TimeToLive(ttl) ) {}