]> git.stg.codes - ssmd.git/commitdiff
gssmd -> ssmd.
authorMaxim Mamontov <faust.madf@gmail.com>
Tue, 16 Sep 2014 18:56:25 +0000 (21:56 +0300)
committerMaxim Mamontov <faust.madf@gmail.com>
Tue, 16 Sep 2014 18:56:25 +0000 (21:56 +0300)
Makefile
src/pidfile.cpp
src/settings.cpp

index 50397f525a577f7a4000e25ce6fe002ae197657b..ad08280c53b744c73e80359af424e54c8bbb7540 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@ LIBS = 3rdparty/snmp++/libsnmp++.a \
        -lcrypto \
        -lpthread
 PROG = ssmd # SNMP Switch Management Daemon
-VERSION = 1.1.5
+VERSION = 1.1.6
 
 SOURCES = src/main.cpp \
          src/pidfile.cpp \
index 99cea9c9ee0e3f18619f8615222cacaeb6d9bdf9..4ad5203fe16fe8034f61efc3413b63e8682d4c90 100644 (file)
@@ -11,7 +11,7 @@
 using SSMD::PIDFile;
 
 PIDFile::PIDFile()
-    : fileName("/var/run/gssmd.pid")
+    : fileName("/var/run/ssmd.pid")
 {
     _create();
 }
index 4271faf0436c5493dc253dfc2bd44509e1c36dda..6e3a7913c5e4b2463b1e169206a5791b49f8a30f 100644 (file)
@@ -10,9 +10,9 @@ SettingsParser::SettingsParser()
     // Declare the supported options.
     _desc.add_options()
         ("help", "produce help message")
-        ("config,c", po::value<std::string>()->default_value("/etc/gssmd/gssmd.conf"), "config file location")
+        ("config,c", po::value<std::string>()->default_value("/etc/ssmd/ssmd.conf"), "config file location")
         ("daemon,d", "daemonize after start")
-        ("debug", "gssmd debugging")
+        ("debug", "ssmd debugging")
         ("log-file", po::value<std::string>(), "log file location")
         ("pid-file", po::value<std::string>(), "PID file location")
         ("switch-sync-interval,s", po::value<time_t>(), "switch synchronization interval")
@@ -21,7 +21,7 @@ SettingsParser::SettingsParser()
         ("down-profile-id", po::value<unsigned>(), "switch's download profile id")
         ("max-acl-per-pdu", po::value<size_t>(), "maximum ACL's per PDU")
         ("data-url", po::value<std::string>(), "data access URL")
-        ("version,v", "show gssmd version and exit")
+        ("version,v", "show ssmd version and exit")
     ;
 }