chiark / gitweb /
disorder-choose rejects tracks in queue/recent list
[disorder] / server / decode.c
index b609d4e6eab48491f3dd2905878bb65ef310b755..c693c759f6f3321fc70aae38a4dd72e7b045f12f 100644 (file)
@@ -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");
     }
   }