]> git.stg.codes - ssmd.git/blobdiff - src/settings.cpp
gssmd -> ssmd.
[ssmd.git] / src / settings.cpp
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")
     ;
 }