diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-22 11:28:37 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-22 11:28:37 +0200 |
commit | f353cb7c64b3c2d4d380460fbd7508f2e509aaff (patch) | |
tree | b9d37df34dd6f2d33fe0429e83959e66c7ac1311 /vdr.c | |
parent | d48630a04ea553f5d2ae49782fcdcad80eded0c7 (diff) | |
download | vdr-f353cb7c64b3c2d4d380460fbd7508f2e509aaff.tar.gz vdr-f353cb7c64b3c2d4d380460fbd7508f2e509aaff.tar.bz2 |
Extended the version number reported with the '-V' option to also show the current APIVERSION
Diffstat (limited to 'vdr.c')
-rw-r--r-- | vdr.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -22,7 +22,7 @@ * * The project's page is at http://www.cadsoft.de/vdr * - * $Id: vdr.c 1.263 2006/04/21 14:51:21 kls Exp $ + * $Id: vdr.c 1.264 2006/04/22 11:26:04 kls Exp $ */ #include <getopt.h> @@ -422,7 +422,7 @@ int main(int argc, char *argv[]) ); } if (DisplayVersion) - printf("vdr (%s) - The Video Disk Recorder\n", VDRVERSION); + printf("vdr (%s/%s) - The Video Disk Recorder\n", VDRVERSION, APIVERSION); if (PluginManager.HasPlugins()) { if (DisplayHelp) printf("Plugins: vdr -P\"name [OPTIONS]\"\n\n"); |