Skip to content

Commit

Permalink
Correct --printexpire option in mythbackend.
Browse files Browse the repository at this point in the history
This corrects logic that was accidentally inverted in 8bc8dd5, and
allows `mythbackend --printexpire` to be used again.
  • Loading branch information
wagnerrp committed Jul 31, 2012
1 parent 8bc6193 commit a9f18c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/programs/mythbackend/main_helpers.cpp
Expand Up @@ -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"));
Expand Down

0 comments on commit a9f18c6

Please sign in to comment.