diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2002-07-08 21:56:57 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2002-07-08 21:56:57 +0000 |
commit | 5b911918e33967be36728ebfab76ad635d2ab09e (patch) | |
tree | 82d873d5e49402372f48dca63b4c9fddf9ea5be1 | |
parent | 7b991956498fece58bc9beacfd64fe9eb73520a5 (diff) | |
download | luasocket-5b911918e33967be36728ebfab76ad635d2ab09e.tar.gz luasocket-5b911918e33967be36728ebfab76ad635d2ab09e.tar.bz2 luasocket-5b911918e33967be36728ebfab76ad635d2ab09e.zip |
Usando localhost por default.
-rw-r--r-- | test/tftptest.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
14 | return a | 14 | return a |
15 | end | 15 | end |
16 | 16 | ||
17 | host = host or "goya" | 17 | host = host or "localhost" |
18 | print("downloading") | 18 | print("downloading") |
19 | err = tftp_get(host, 69, "index.html", "index.got") | 19 | err = tftp_get(host, 69, "index.html", "index.got") |
20 | assert(not err, err) | 20 | assert(not err, err) |