git: 73a026d5e977 - main - nuageinit: Fix a typo in an error message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 19 Nov 2025 14:30:13 UTC
The branch main has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=73a026d5e9778ac182be4a5876771eefa2cd6f41
commit 73a026d5e9778ac182be4a5876771eefa2cd6f41
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2025-11-19 14:28:54 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2025-11-19 14:28:54 +0000
nuageinit: Fix a typo in an error message
- s/outout/output/
MFC after: 3 days
---
libexec/nuageinit/nuageinit | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libexec/nuageinit/nuageinit b/libexec/nuageinit/nuageinit
index f29fa8ba1bac..dc33f20464dc 100755
--- a/libexec/nuageinit/nuageinit
+++ b/libexec/nuageinit/nuageinit
@@ -64,7 +64,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()