mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
net.websocket.frames: Fix syntax error due to code copy pasting
This commit is contained in:
parent
0ce785a39c
commit
b75d87f63d
1 changed files with 2 additions and 2 deletions
|
@ -49,8 +49,8 @@ local function get_byte(x, n)
|
|||
end
|
||||
local function pack_uint64be(x)
|
||||
local h = band(x / 2^32, 2^32-1);
|
||||
return s_char(get_byte(h, 24), get_byte(h, 16), get_byte(h, 8), band(h, 0xFF));
|
||||
get_byte(x, 24), get_byte(x, 16), get_byte(x, 8), band(x, 0xFF);
|
||||
return s_char(get_byte(h, 24), get_byte(h, 16), get_byte(h, 8), band(h, 0xFF),
|
||||
get_byte(x, 24), get_byte(x, 16), get_byte(x, 8), band(x, 0xFF));
|
||||
end
|
||||
|
||||
if s_pack then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue