svn commit: r366579 - head/sbin/devd

Warner Losh imp at FreeBSD.org
Fri Oct 9 15:45:35 UTC 2020


Author: imp
Date: Fri Oct  9 15:45:34 2020
New Revision: 366579
URL: https://svnweb.freebsd.org/changeset/base/366579

Log:
  Remove gratuitous use of '' around arguments
  
  There's no need to use ' here, so remove it. This use causes no
  problems, but is a bad example.

Modified:
  head/sbin/devd/devd.conf

Modified: head/sbin/devd/devd.conf
==============================================================================
--- head/sbin/devd/devd.conf	Fri Oct  9 15:29:05 2020	(r366578)
+++ head/sbin/devd/devd.conf	Fri Oct  9 15:45:34 2020	(r366579)
@@ -229,7 +229,7 @@ notify 10 {
 	match "system"		"ACPI";
 	match "subsystem"	"Thermal";
 	match "notify"		"0xcc";
-	action "logger -p kern.emerg 'WARNING: system temperature too high, shutting down soon!'";
+	action "logger -p kern.emerg WARNING: system temperature too high, shutting down soon!";
 };
 
 # User requested suspend, so perform preparation steps and then execute


More information about the svn-src-head mailing list