Skip to content

Commit

Permalink
Correct the database tags of some backend housekeeping tasks.
Browse files Browse the repository at this point in the history
  • Loading branch information
wagnerrp committed Jun 3, 2013
1 parent 5d8c186 commit 0be46c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/programs/mythbackend/backendhousekeeper.h
Expand Up @@ -7,15 +7,15 @@
class LogCleanerTask : public DailyHouseKeeperTask
{
public:
LogCleanerTask(void) : DailyHouseKeeperTask("LogCleanup", kHKGlobal) {};
LogCleanerTask(void) : DailyHouseKeeperTask("LogClean", kHKGlobal) {};
bool DoRun(void);
};


class CleanupTask : public DailyHouseKeeperTask
{
public:
CleanupTask(void) : DailyHouseKeeperTask("GeneralCleanup", kHKGlobal) {};
CleanupTask(void) : DailyHouseKeeperTask("DBCleanup", kHKGlobal) {};
bool DoRun(void);

private:
Expand Down

0 comments on commit 0be46c8

Please sign in to comment.