From 5b911918e33967be36728ebfab76ad635d2ab09e Mon Sep 17 00:00:00 2001 From: Diego Nehab Date: Mon, 8 Jul 2002 21:56:57 +0000 Subject: [PATCH] Usando localhost por default. --- test/tftptest.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tftptest.lua b/test/tftptest.lua index 1e9e1d5..b29657a 100644 --- a/test/tftptest.lua +++ b/test/tftptest.lua @@ -14,7 +14,7 @@ function readfile(file) return a end -host = host or "goya" +host = host or "localhost" print("downloading") err = tftp_get(host, 69, "index.html", "index.got") assert(not err, err)