mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-22 14:41:28 +00:00
Fixed packet_empty()
This commit is contained in:
parent
3c644e9a88
commit
468844b0a9
|
@ -25,7 +25,7 @@
|
||||||
int
|
int
|
||||||
packet_empty(struct packet *packet)
|
packet_empty(struct packet *packet)
|
||||||
{
|
{
|
||||||
return (packet->len != 0);
|
return (packet->len == 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue