mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-21 23:59:19 +02:00
fix tests after patch in #88
This commit is contained in:
parent
b177901d38
commit
aa818c58bb
|
@ -86,7 +86,7 @@ START_TEST(test_build_hostname)
|
|||
buflen = sizeof(buf);
|
||||
|
||||
for (i = 1; i < sizeof(data); i++) {
|
||||
int len = build_hostname(buf, buflen, data, i, topdomain, get_base32_encoder());
|
||||
int len = build_hostname(buf, buflen, data, i, topdomain, get_base32_encoder(), sizeof(buflen));
|
||||
|
||||
fail_if(len > i);
|
||||
fail_if(strstr(buf, ".."), "Found double dots when encoding data len %d! buf: %s", i, buf);
|
||||
|
|
Loading…
Reference in New Issue