]> mj.ucw.cz Git - pciutils.git/commitdiff
Now responds to "--version"
authorMartin Mares <mj@ucw.cz>
Mon, 8 Jun 1998 07:54:37 +0000 (07:54 +0000)
committerMartin Mares <mj@ucw.cz>
Fri, 5 May 2006 12:09:52 +0000 (14:09 +0200)
lspci.c

diff --git a/lspci.c b/lspci.c
index 90b2e581000127ba18e0d77678810fd99a9936c2..41a7e01c23dd7c5a3759b4e11e3ea2fe48ebe4a1 100644 (file)
--- a/lspci.c
+++ b/lspci.c
@@ -1,5 +1,5 @@
 /*
- *     $Id: lspci.c,v 1.11 1998/04/19 11:02:27 mj Exp $
+ *     $Id: lspci.c,v 1.12 1998/06/08 07:54:37 mj Exp $
  *
  *     Linux PCI Utilities -- List All PCI Devices
  *
@@ -858,6 +858,11 @@ main(int argc, char **argv)
   int i;
   char *msg;
 
+  if (argc == 2 && !strcmp(argv[1], "--version"))
+    {
+      puts("lspci version " PCIUTILS_VERSION);
+      return 0;
+    }
   filter_init(&filter);
   while ((i = getopt(argc, argv, options)) != -1)
     switch (i)