The branch stable/14 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=bc97e62961e6f204582951051fa643e4cb1caddd
commit bc97e62961e6f204582951051fa643e4cb1caddd Author: Gordon Bergling <[email protected]> AuthorDate: 2025-11-19 14:28:54 +0000 Commit: Gordon Bergling <[email protected]> CommitDate: 2025-11-22 09:20:11 +0000 nuageinit: Fix a typo in an error message - s/outout/output/ (cherry picked from commit 73a026d5e9778ac182be4a5876771eefa2cd6f41) --- libexec/nuageinit/nuageinit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/nuageinit/nuageinit b/libexec/nuageinit/nuageinit index 29340a3d91ea..f68e45701b6c 100755 --- a/libexec/nuageinit/nuageinit +++ b/libexec/nuageinit/nuageinit @@ -63,7 +63,7 @@ local function get_ifaces_by_mac() ns:close() local res, err = parser:parse_string(netres) if not res then - nuage.warn("Error parsing netstat -i --libxo json outout: " .. err) + nuage.warn("Error parsing netstat -i --libxo json output: " .. err) return nil end local ifaces = parser:get_object()
