From 4cb9d1becaf6ef73ccf485b5c2fee0c1b9366058 Mon Sep 17 00:00:00 2001 From: Eitan Adler Date: Mon, 4 Mar 2013 02:21:31 +0000 Subject: [PATCH] devd: Correct typo in comment. Submitted by: Christoph Mallon Approved by: cperciva (mentor) --- sbin/devd/devd.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/devd/devd.cc b/sbin/devd/devd.cc index 405720ba877..9448775b14c 100644 --- a/sbin/devd/devd.cc +++ b/sbin/devd/devd.cc @@ -606,7 +606,7 @@ config::expand_one(const char *&src, string &dst) return; } - // ${^A-Za-z] -> $\1 + // $[^A-Za-z] -> $\1 if (!isalpha(*src)) { dst += '$'; dst += *src++;