Browse Source

ffho-debug: br-client -> local-node

Karsten Böddeker 7 years ago
parent
commit
e7da25c19a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ffho/ffho-debug/luasrc/bin/ffho-debug

+ 1 - 1
ffho/ffho-debug/luasrc/bin/ffho-debug

@@ -33,7 +33,7 @@ end
 local addresses = ""
 for line in io.lines('/proc/net/if_inet6') do
 	local matches = { line:match('^' .. string.rep('(%x%x%x%x)', 8) .. string.rep(' %x%x', 4) .. '%s+([^%s]+)$') }
-	if matches[9] == 'br-client' then
+	if matches[9] == 'local-node' then
 		addresses = addresses .. "             " .. ip.IPv6(string.format('%s:%s:%s:%s:%s:%s:%s:%s', unpack(matches))):string():lower() .. "\n"
 	end
 end