mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-13 03:43:15 +00:00
client.c: don't produce an useless strncat usage warning
This commit is contained in:
parent
27e5d6fadd
commit
b406009c6d
|
@ -1290,8 +1290,8 @@ send_upenctest(int fd, const char *s)
|
|||
buf[3] = b32_5to8((rand_seed ) & 0x1f);
|
||||
rand_seed++;
|
||||
|
||||
strncat(buf, s, 512);
|
||||
strncat(buf, ".", 512);
|
||||
strncat(buf, s, 128);
|
||||
strncat(buf, ".", 2);
|
||||
strncat(buf, topdomain, 512 - strlen(buf));
|
||||
send_query(fd, buf);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue