Skip to content

Commit

Permalink
Make mythmediaserver report app name correctly
Browse files Browse the repository at this point in the history
Seems it was still set to mythjobqueue.  Also add mythmediaserver to a local
.gitignore to keep it from getting re-added.
  • Loading branch information
Beirdo committed Jun 6, 2011
1 parent 941bf05 commit 02881f3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions mythtv/libs/libmythbase/mythcorecontext.h
Expand Up @@ -24,6 +24,7 @@
#define MYTH_APPNAME_MYTHMESSAGE "mythmessage"
#define MYTH_APPNAME_MYTHLCDSERVER "mythlcdserver"
#define MYTH_APPNAME_MYTHAVTEST "mythavtest"
#define MYTH_APPNAME_MYTHMEDIASERVER "mythmediaserver"

class MDBManager;
class MythCoreContextPrivate;
Expand Down
1 change: 1 addition & 0 deletions mythtv/programs/mythmediaserver/.gitignore
@@ -0,0 +1 @@
mythmediaserver
4 changes: 2 additions & 2 deletions mythtv/programs/mythmediaserver/main.cpp
Expand Up @@ -125,7 +125,7 @@ int main(int argc, char *argv[])
int argpos = 1;
bool daemonize = false;

QCoreApplication::setApplicationName(MYTH_APPNAME_MYTHJOBQUEUE);
QCoreApplication::setApplicationName(MYTH_APPNAME_MYTHMEDIASERVER);

QString filename;

Expand Down Expand Up @@ -288,7 +288,7 @@ int main(int argc, char *argv[])
}

VERBOSE(VB_IMPORTANT, QString("%1 version: %2 [%3] www.mythtv.org")
.arg(MYTH_APPNAME_MYTHJOBQUEUE)
.arg(MYTH_APPNAME_MYTHMEDIASERVER)
.arg(MYTH_SOURCE_PATH)
.arg(MYTH_SOURCE_VERSION));

Expand Down

0 comments on commit 02881f3

Please sign in to comment.