summaryrefslogtreecommitdiffstats
path: root/ssl/d1_both.c
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2005-07-26 04:25:05 +0000
committerGeoff Thorpe <geoff@openssl.org>2005-07-26 04:25:05 +0000
commitf920c5b590e3317fa740ca62fd87dbcd60978a16 (patch)
tree6d98101ae4c8ef85201ad9c0c6d67e015bae2208 /ssl/d1_both.c
parent05fc7018f8d3e33a6aad5073fb09cb6224d128c3 (diff)
Fix signed/unsigned warnings.
Diffstat (limited to 'ssl/d1_both.c')
-rw-r--r--ssl/d1_both.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/d1_both.c b/ssl/d1_both.c
index dfe2bab88c..a584511c84 100644
--- a/ssl/d1_both.c
+++ b/ssl/d1_both.c
@@ -1228,7 +1228,7 @@ dtls1_min_mtu(void)
static unsigned int
dtls1_guess_mtu(unsigned int curr_mtu)
{
- int i;
+ unsigned int i;
if ( curr_mtu == 0 )
return g_probable_mtu[0] ;