1
0
Fork 0
mirror of https://github.com/yarrick/iodine.git synced 2025-04-12 21:41:01 +00:00

Fixed packet_empty()

This commit is contained in:
Erik Ekman 2007-12-01 22:41:27 +00:00
parent 9e60b36430
commit 3b7927b2dc

View file

@ -25,7 +25,7 @@
int int
packet_empty(struct packet *packet) packet_empty(struct packet *packet)
{ {
return (packet->len != 0); return (packet->len == 0);
} }
/** /**