X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/eb5f83f45eb2ff415ededbb30187fec8c3e71010..3fbdc96d45fbf2abcc93ed2e8ad206bc540be92b:/clients/disorderfm.c diff --git a/clients/disorderfm.c b/clients/disorderfm.c index d8dffb6..a55cc44 100644 --- a/clients/disorderfm.c +++ b/clients/disorderfm.c @@ -38,6 +38,7 @@ #include "charset.h" #include "defs.h" #include "mem.h" +#include "version.h" /* Arguments etc ----------------------------------------------------------- */ @@ -127,13 +128,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); -} - /* Utilities --------------------------------------------------------------- */ /* Copy FROM to TO. Has the same signature as link/symlink. */ @@ -356,7 +350,7 @@ int main(int argc, char **argv) { while((n = getopt_long(argc, argv, "hVdf:t:i:e:ET:u:wlscn", options, 0)) >= 0) { switch(n) { case 'h': help(); - case 'V': version(); + case 'V': version("disorderfm"); case 'd': debugging = 1; break; case 'f': fromencoding = optarg; break; case 't': toencoding = optarg; break;