svn commit: r329633 - head/sbin/devmatch

Warner Losh imp at FreeBSD.org
Tue Feb 20 05:35:01 UTC 2018


Author: imp
Date: Tue Feb 20 05:35:00 2018
New Revision: 329633
URL: https://svnweb.freebsd.org/changeset/base/329633

Log:
  More verbose output.

Modified:
  head/sbin/devmatch/devmatch.c

Modified: head/sbin/devmatch/devmatch.c
==============================================================================
--- head/sbin/devmatch/devmatch.c	Tue Feb 20 05:21:58 2018	(r329632)
+++ head/sbin/devmatch/devmatch.c	Tue Feb 20 05:35:00 2018	(r329633)
@@ -427,6 +427,8 @@ search_hints(const char *bus, const char *dev, const c
 							asprintf(&descr, "%s: %s", *dev ? dev : "unattached", lastmod);
 						else
 							asprintf(&descr, "%s", lastmod);
+						if (verbose_flag)
+							printf("Matches --- %s ---\n", lastmod);
 
 						if (descr != NULL && hit_index < DEVMATCH_MAX_HITS) {
 							match_data[hit_index].descr = descr;


More information about the svn-src-all mailing list