svn commit: r342805 - head/libexec/rc

Kyle Evans kevans at FreeBSD.org
Sun Jan 6 01:39:02 UTC 2019


Author: kevans
Date: Sun Jan  6 01:39:01 2019
New Revision: 342805
URL: https://svnweb.freebsd.org/changeset/base/342805

Log:
  rc.subr: Fix typo
  
  Originally intended as 'in case in needs to be re-invoked', but it was later
  decided (by myself) that 're-invoke itself' makes it more clear that the
  script is expected to use this in a way.
  
  Reported by:	Jose Luis Duran (jlduran @ github)
  X-MFC-With:	r342792

Modified:
  head/libexec/rc/rc.subr

Modified: head/libexec/rc/rc.subr
==============================================================================
--- head/libexec/rc/rc.subr	Sun Jan  6 00:59:55 2019	(r342804)
+++ head/libexec/rc/rc.subr	Sun Jan  6 01:39:01 2019	(r342805)
@@ -887,8 +887,8 @@ check_startmsgs()
 #			by $flags from the environment.
 #			This variable may be changed by the precmd method.
 #
-#       rc_service      Path to the service being executed, in case it needs to
-#                       re-invoked.
+#       rc_service      Path to the service being executed, in case the service
+#                       needs to re-invoke itself.
 #
 #	rc_pid		PID of command (if appropriate)
 #


More information about the svn-src-all mailing list