From a9f18c63bfb23494ee83a8ba76d82fc320617067 Mon Sep 17 00:00:00 2001 From: Raymond Wagner Date: Tue, 31 Jul 2012 14:21:22 -0400 Subject: [PATCH] Correct --printexpire option in mythbackend. This corrects logic that was accidentally inverted in 8bc8dd54, and allows `mythbackend --printexpire` to be used again. --- mythtv/programs/mythbackend/main_helpers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mythtv/programs/mythbackend/main_helpers.cpp b/mythtv/programs/mythbackend/main_helpers.cpp index 2c89c86fdb6..bc9d698351d 100644 --- a/mythtv/programs/mythbackend/main_helpers.cpp +++ b/mythtv/programs/mythbackend/main_helpers.cpp @@ -409,7 +409,7 @@ int handle_command(const MythBackendCommandLineParser &cmdline) return (ok) ? GENERIC_EXIT_OK : GENERIC_EXIT_CONNECT_ERROR; } - if (!cmdline.toBool("printexpire")) + if (cmdline.toBool("printexpire")) { expirer = new AutoExpire(); expirer->PrintExpireList(cmdline.toString("printexpire"));