git: e449800f0a7e - stable/13 - bhyve: Fix a typo in a comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 26 Jan 2023 19:48:06 UTC
The branch stable/13 has been updated by jhb:
URL: https://cgit.FreeBSD.org/src/commit/?id=e449800f0a7eeb4d130b3e2a04947661a2f326bd
commit e449800f0a7eeb4d130b3e2a04947661a2f326bd
Author: Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2022-11-14 14:00:06 +0000
Commit: John Baldwin <jhb@FreeBSD.org>
CommitDate: 2023-01-26 19:43:31 +0000
bhyve: Fix a typo in a comment
Reported by: Mikaƫl Urankar <mikael.urankar@mailo.fr>
Fixes: 719e307f80c7 ("bhyve: Cast away const when fetching a config nvlist")
(cherry picked from commit 84b0b7ea4cd6731e91f79e008a747b502106f95a)
---
usr.sbin/bhyve/config.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/usr.sbin/bhyve/config.c b/usr.sbin/bhyve/config.c
index 6339ddb9f2ee..807890516eea 100644
--- a/usr.sbin/bhyve/config.c
+++ b/usr.sbin/bhyve/config.c
@@ -68,7 +68,7 @@ _lookup_config_node(nvlist_t *parent, const char *path, bool create)
/*
* XXX-MJ it is incorrect to cast away the const
* qualifier like this since the contract with nvlist
- * says that values are immuatable, and some consumers
+ * says that values are immutable, and some consumers
* will indeed add nodes to the returned nvlist. In
* practice, however, it appears to be harmless with the
* current nvlist implementation, so we just live with