svn commit: r247763 - head/sbin/devd

Eitan Adler eadler at FreeBSD.org
Mon Mar 4 02:21:34 UTC 2013


Author: eadler
Date: Mon Mar  4 02:21:31 2013
New Revision: 247763
URL: http://svnweb.freebsd.org/changeset/base/247763

Log:
  devd: Correct typo in comment.
  
  Submitted by:	Christoph Mallon <christoph.mallon at gmx.de>
  Approved by:	cperciva (mentor)

Modified:
  head/sbin/devd/devd.cc

Modified: head/sbin/devd/devd.cc
==============================================================================
--- head/sbin/devd/devd.cc	Mon Mar  4 02:21:29 2013	(r247762)
+++ head/sbin/devd/devd.cc	Mon Mar  4 02:21:31 2013	(r247763)
@@ -606,7 +606,7 @@ config::expand_one(const char *&src, str
 		return;
 	}
 	
-	// ${^A-Za-z] -> $\1
+	// $[^A-Za-z] -> $\1
 	if (!isalpha(*src)) {
 		dst += '$';
 		dst += *src++;


More information about the svn-src-all mailing list