git: 4269d1a2e496 - main - rc.subr: fix typo "save_dot" -> "safe_dot"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 13 Sep 2024 20:52:07 UTC
The branch main has been updated by rcm:
URL: https://cgit.FreeBSD.org/src/commit/?id=4269d1a2e4967eb74cbef38ecc72ef9a08f51396
commit 4269d1a2e4967eb74cbef38ecc72ef9a08f51396
Author: R. Christian McDonald <rcm@FreeBSD.org>
AuthorDate: 2024-09-11 14:40:04 +0000
Commit: R. Christian McDonald <rcm@FreeBSD.org>
CommitDate: 2024-09-13 20:51:40 +0000
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
---
libexec/rc/rc.subr | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libexec/rc/rc.subr b/libexec/rc/rc.subr
index 4bb2333addc2..df1501707a67 100644
--- a/libexec/rc/rc.subr
+++ b/libexec/rc/rc.subr
@@ -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