X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/a05e4467dee55248f2135dcb532b4729154d69c5..d867af1072e19ac8326846792e97f482113e7473:/server/trackname.c diff --git a/server/trackname.c b/server/trackname.c index b14e9e5..3639c52 100644 --- a/server/trackname.c +++ b/server/trackname.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004, 2005, 2006 Richard Kettlewell + * Copyright (C) 2004-2008 Richard Kettlewell * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,21 +18,7 @@ * USA */ -#include -#include "types.h" - -#include -#include -#include -#include - -#include "configuration.h" -#include "syscalls.h" -#include "log.h" -#include "trackname.h" -#include "mem.h" -#include "charset.h" -#include "defs.h" +#include "disorder-server.h" static const struct option options[] = { { "help", no_argument, 0, 'h' }, @@ -55,13 +41,6 @@ static void help(void) { exit(0); } -/* display version number and terminate */ -static void version(void) { - xprintf("%s", disorder_version_string); - xfclose(stdout); - exit(0); -} - int main(int argc, char **argv) { int n; const char *s; @@ -70,7 +49,7 @@ int main(int argc, char **argv) { while((n = getopt_long(argc, argv, "hVc:d", options, 0)) >= 0) { switch(n) { case 'h': help(); - case 'V': version(); + case 'V': version("trackname"); case 'c': configfile = optarg; break; case 'd': debugging = 1; break; default: fatal(0, "invalid option");