X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/87b5259b3ebe094ed7571de9cd2f7614d6488f66..28dc2d220aee492d34c35e3e0756248a16d55b5a:/server/decode.c diff --git a/server/decode.c b/server/decode.c index b609d4e..c693c75 100644 --- a/server/decode.c +++ b/server/decode.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder - * Copyright (C) 2007 Richard Kettlewell + * Copyright (C) 2007, 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 @@ -50,6 +50,7 @@ #include "defs.h" #include "wav.h" #include "speaker-protocol.h" +#include "version.h" /** @brief Encoding lookup table type */ struct decoder { @@ -444,13 +445,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 *e; @@ -460,7 +454,7 @@ int main(int argc, char **argv) { while((n = getopt_long(argc, argv, "hV", options, 0)) >= 0) { switch(n) { case 'h': help(); - case 'V': version(); + case 'V': version("disorder-decode"); default: fatal(0, "invalid option"); } }