aboutgitcodebugslistschat
path: root/tcp.c
diff options
context:
space:
mode:
authorStefano Brivio <sbrivio@redhat.com>2021-10-26 00:35:01 +0200
committerStefano Brivio <sbrivio@redhat.com>2022-01-26 07:57:09 +0100
commitf6d9787d30c6a58ea6c4c1612b89f4bd5dd8cb68 (patch)
treeb4e5d00cf65b0b16b57820b154387bd64b079b68 /tcp.c
parent6040f16239c96498a7b98c854a3c923b22aad3ea (diff)
downloadpasst-f6d9787d30c6a58ea6c4c1612b89f4bd5dd8cb68.tar
passt-f6d9787d30c6a58ea6c4c1612b89f4bd5dd8cb68.tar.gz
passt-f6d9787d30c6a58ea6c4c1612b89f4bd5dd8cb68.tar.bz2
passt-f6d9787d30c6a58ea6c4c1612b89f4bd5dd8cb68.tar.lz
passt-f6d9787d30c6a58ea6c4c1612b89f4bd5dd8cb68.tar.xz
passt-f6d9787d30c6a58ea6c4c1612b89f4bd5dd8cb68.tar.zst
passt-f6d9787d30c6a58ea6c4c1612b89f4bd5dd8cb68.zip
tap, tcp: Fix two comparisons with different signedness reported by gcc 7
For some reason, those are not reported by recent versions of gcc. Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'tcp.c')
-rw-r--r--tcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcp.c b/tcp.c
index b0d5f40..2a842bd 100644
--- a/tcp.c
+++ b/tcp.c
@@ -1034,7 +1034,7 @@ static int tcp_opt_get(struct tcphdr *th, size_t len, uint8_t type_search,
uint8_t type, optlen;
char *p;
- if (len > th->doff * 4)
+ if (len > (unsigned)th->doff * 4)
len = th->doff * 4;
len -= sizeof(*th);