rc.subr: fix typo "save_dot" -> "safe_dot"

Reviewed by:	sjg
Approved by:	kp
MFC after:	1 week
Sponsored by:	Rubicon Communications, LLC ("Netgate")
Differential Revision:	https://reviews.freebsd.org/D46644
This commit is contained in:
R. Christian McDonald 2024-09-11 10:40:04 -04:00
parent fd1d666289
commit 4269d1a2e4
1 changed files with 1 additions and 1 deletions

View File

@ -2782,6 +2782,6 @@ if ! have DebugOn; then
return $_rc
}
fi
if ! have save_dot; then
if ! have safe_dot; then
safe_dot() { dot "$@"; }
fi