From e537a06c593d2d71ebc837df479847ac6a5c9acd Mon Sep 17 00:00:00 2001 From: markm Date: Wed, 26 Jun 2002 17:06:14 +0000 Subject: [PATCH] Warnings fixes. Sort out some variable types. git-svn-id: http://svn0.us-east.freebsd.org/base/head/contrib/telnet@98884 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- libtelnet/encrypt.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/libtelnet/encrypt.c b/libtelnet/encrypt.c index 9dffefd..8bdf672 100644 --- a/libtelnet/encrypt.c +++ b/libtelnet/encrypt.c @@ -63,6 +63,7 @@ static const char sccsid[] = "@(#)encrypt.c 8.2 (Berkeley) 5/30/95"; #ifdef ENCRYPTION +#include #define ENCRYPT_NAMES #include #include @@ -99,20 +100,20 @@ static const char *Name = "Noname"; #define typemask(x) ((x) > 0 ? 1 << ((x)-1) : 0) -static long i_support_encrypt = 0 +static u_long i_support_encrypt = 0 | typemask(ENCTYPE_DES_CFB64) | typemask(ENCTYPE_DES_OFB64) |0; -static long i_support_decrypt = 0 +static u_long i_support_decrypt = 0 | typemask(ENCTYPE_DES_CFB64) | typemask(ENCTYPE_DES_OFB64) |0; -static long i_wont_support_encrypt = 0; -static long i_wont_support_decrypt = 0; +static u_long i_wont_support_encrypt = 0; +static u_long i_wont_support_decrypt = 0; #define I_SUPPORT_ENCRYPT (i_support_encrypt & ~i_wont_support_encrypt) #define I_SUPPORT_DECRYPT (i_support_decrypt & ~i_wont_support_decrypt) -static long remote_supports_encrypt = 0; -static long remote_supports_decrypt = 0; +static u_long remote_supports_encrypt = 0; +static u_long remote_supports_decrypt = 0; static Encryptions encryptions[] = { { "DES_CFB64", ENCTYPE_DES_CFB64,