diff options
author | 2017-09-16 23:36:41 +0300 | |
---|---|---|
committer | 2017-09-17 17:38:11 +0300 | |
commit | f13f4b014b7478dd2742940144ab44aac507af52 (patch) | |
tree | b52051008bf0831a877e2c55ae0c7d32d753c0e6 /src/pb_controller.cpp | |
parent | 437c4284d12ec5aa7ca9ae9b4c3f618ebd33dd4d (diff) | |
download | newsboat-f13f4b014b7478dd2742940144ab44aac507af52.tar.gz newsboat-f13f4b014b7478dd2742940144ab44aac507af52.tar.zst newsboat-f13f4b014b7478dd2742940144ab44aac507af52.zip |
(News|Pod)beuter → (News|Pod)boat
Diffstat (limited to '')
-rw-r--r-- | src/pb_controller.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pb_controller.cpp b/src/pb_controller.cpp index a6581f5e..ce4d490a 100644 --- a/src/pb_controller.cpp +++ b/src/pb_controller.cpp @@ -200,11 +200,11 @@ void pb_controller::run(int argc, char * argv[]) { } }; - std::cout << strprintf::fmt(_("Starting %s %s..."), "podbeuter", PROGRAM_VERSION) << std::endl; + std::cout << strprintf::fmt(_("Starting %s %s..."), "podboat", PROGRAM_VERSION) << std::endl; pid_t pid; if (!utils::try_fs_lock(lock_file, pid)) { - std::cout << strprintf::fmt(_("Error: an instance of %s is already running (PID: %u)"), "podbeuter", pid) << std::endl; + std::cout << strprintf::fmt(_("Error: an instance of %s is already running (PID: %u)"), "podboat", pid) << std::endl; return; } @@ -231,7 +231,7 @@ void pb_controller::run(int argc, char * argv[]) { cfgparser.register_handler("reset-unread-on-update", &null_cah); try { - cfgparser.parse("/etc/newsbeuter/config"); + cfgparser.parse("/etc/newsboat/config"); cfgparser.parse(config_file); } catch (const configexception& ex) { std::cout << ex.what() << std::endl; @@ -270,7 +270,7 @@ void pb_controller::run(int argc, char * argv[]) { void pb_controller::usage(const char * argv0) { auto msg = strprintf::fmt(_("%s %s\nusage %s [-C <file>] [-q <file>] [-h]\n"), - "podbeuter", + "podboat", PROGRAM_VERSION, argv0); std::cout << msg; |