Date: Sat, 16 May 2009 15:20:02 GMT From: dfilter@FreeBSD.ORG (dfilter service) To: freebsd-bugs@FreeBSD.org Subject: Re: conf/134579: commit references a PR Message-ID: <200905161520.n4GFK2AL029763@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR conf/134579; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: conf/134579: commit references a PR Date: Sat, 16 May 2009 15:13:06 +0000 (UTC) Author: maxim Date: Sat May 16 15:12:56 2009 New Revision: 192198 URL: http://svn.freebsd.org/changeset/base/192198 Log: o Add missed semicolon in action script. PR: conf/134579 Submitted by: Lucius Windschuh MFC after: 1 week Modified: head/etc/devd.conf Modified: head/etc/devd.conf ============================================================================== --- head/etc/devd.conf Sat May 16 14:30:08 2009 (r192197) +++ head/etc/devd.conf Sat May 16 15:12:56 2009 (r192198) @@ -132,7 +132,7 @@ attach 100 { match "vendor" "0x1645"; match "product" "0x8001"; match "release" "0x0101"; - action "if ! kldstat -n usio > /dev/null 2>&1 ; then kldload usio; fi /usr/sbin/ezdownload -v -f /usr/share/usb/firmware/1645.8001.0101 /dev/$device-name"; + action "if ! kldstat -n usio > /dev/null 2>&1 ; then kldload usio; fi; /usr/sbin/ezdownload -v -f /usr/share/usb/firmware/1645.8001.0101 /dev/$device-name"; }; # This entry starts the ColdSync tool in daemon mode. Make sure you have an up _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200905161520.n4GFK2AL029763>