diff options
author | Caleb Maclennan <caleb@alerque.com> | 2023-11-10 09:12:04 +0300 |
---|---|---|
committer | Caleb Maclennan <caleb@alerque.com> | 2023-11-10 09:12:04 +0300 |
commit | 5c4fc93d5f4137bf4c22ddf1a048c907a4a26727 (patch) | |
tree | a9a68e1f6a9c3bfe2b64fa1c3a4098865b7d3b5d /test/utestsrvr.lua | |
parent | ccef3bc4e2aa6ee5b997a80aabb58f4ff0b0e98f (diff) | |
parent | 43a97b7f0053313b43906371dbdc226271e6c8ab (diff) | |
download | luasocket-hjelmeland-patch-1.tar.gz luasocket-hjelmeland-patch-1.tar.bz2 luasocket-hjelmeland-patch-1.zip |
Merge branch 'master' into hjelmeland-patch-1hjelmeland-patch-1
Diffstat (limited to 'test/utestsrvr.lua')
-rw-r--r-- | test/utestsrvr.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/utestsrvr.lua b/test/utestsrvr.lua index a96b570..b6e4246 100644 --- a/test/utestsrvr.lua +++ b/test/utestsrvr.lua | |||
@@ -9,7 +9,7 @@ ack = "\n"; | |||
9 | while 1 do | 9 | while 1 do |
10 | print("server: waiting for client connection..."); | 10 | print("server: waiting for client connection..."); |
11 | control = assert(server:accept()); | 11 | control = assert(server:accept()); |
12 | while 1 do | 12 | while 1 do |
13 | command = assert(control:receive()); | 13 | command = assert(control:receive()); |
14 | assert(control:send(ack)); | 14 | assert(control:send(ack)); |
15 | ((loadstring or load)(command))(); | 15 | ((loadstring or load)(command))(); |