1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-27 09:59:04 +00:00

fix the Lua tests.

This commit is contained in:
d33tah
2013-07-17 21:41:22 +00:00
parent 30c35d31be
commit 713641fb2f

View File

@@ -2,12 +2,13 @@
while true do
data = io.stdin:read(1024)
data = io.stdin:read(1)
if data == nil then
break
end
io.write(data:upper())
io.flush()
end