git: 734142d4a208 - stable/15 - nuageinit: Fix a typo in an error message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 22 Nov 2025 09:19:29 UTC
The branch stable/15 has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=734142d4a208d215b3d31781bc0a8292b226fe79
commit 734142d4a208d215b3d31781bc0a8292b226fe79
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2025-11-19 14:28:54 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2025-11-22 09:18:35 +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()