Date: Tue, 20 Feb 2018 05:35:00 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r329633 - head/sbin/devmatch Message-ID: <201802200535.w1K5Z0M8098715@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802200535.w1K5Z0M8098715>