fix(users/Profpatsch/netencode/gen: fix number generator
Shouldn’t use the netstring function, since that adds the length of the containing string, which doesn’t make sense for numbers, they just have their one length number and content. Change-Id: I5591f6dd59154c5ef38d6e9b7300d19884a2d57b Reviewed-on: https://cl.tvl.fyi/c/depot/+/2497 Tested-by: BuildkiteCI Reviewed-by: Profpatsch <mail@profpatsch.de>
This commit is contained in:
parent
60b79b2d9d
commit
8ff77f0b9f
1 changed files with 2 additions and 2 deletions
|
@ -8,8 +8,8 @@ let
|
|||
|
||||
n1 = b: if b then "n1:1," else "n1:0,";
|
||||
|
||||
n = i: n: netstring "n${toString i}" "," (toString n);
|
||||
i = i: n: netstring "i${toString i}" "," (toString n);
|
||||
n = i: n: "n${toString i}:${toString n},";
|
||||
i = i: n: "i${toString i}:${toString n},";
|
||||
|
||||
n3 = n 3;
|
||||
n6 = n 6;
|
||||
|
|
Loading…
Reference in a new issue