mirror of
https://github.com/sheumann/telnetd.git
synced 2024-11-26 12:49:21 +00:00
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
This commit is contained in:
parent
22ff929ecd
commit
e537a06c59
@ -63,6 +63,7 @@ static const char sccsid[] = "@(#)encrypt.c 8.2 (Berkeley) 5/30/95";
|
|||||||
|
|
||||||
#ifdef ENCRYPTION
|
#ifdef ENCRYPTION
|
||||||
|
|
||||||
|
#include <sys/types.h>
|
||||||
#define ENCRYPT_NAMES
|
#define ENCRYPT_NAMES
|
||||||
#include <arpa/telnet.h>
|
#include <arpa/telnet.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
@ -99,20 +100,20 @@ static const char *Name = "Noname";
|
|||||||
|
|
||||||
#define typemask(x) ((x) > 0 ? 1 << ((x)-1) : 0)
|
#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)
|
| typemask(ENCTYPE_DES_CFB64) | typemask(ENCTYPE_DES_OFB64)
|
||||||
|0;
|
|0;
|
||||||
static long i_support_decrypt = 0
|
static u_long i_support_decrypt = 0
|
||||||
| typemask(ENCTYPE_DES_CFB64) | typemask(ENCTYPE_DES_OFB64)
|
| typemask(ENCTYPE_DES_CFB64) | typemask(ENCTYPE_DES_OFB64)
|
||||||
|0;
|
|0;
|
||||||
|
|
||||||
static long i_wont_support_encrypt = 0;
|
static u_long i_wont_support_encrypt = 0;
|
||||||
static long i_wont_support_decrypt = 0;
|
static u_long i_wont_support_decrypt = 0;
|
||||||
#define I_SUPPORT_ENCRYPT (i_support_encrypt & ~i_wont_support_encrypt)
|
#define I_SUPPORT_ENCRYPT (i_support_encrypt & ~i_wont_support_encrypt)
|
||||||
#define I_SUPPORT_DECRYPT (i_support_decrypt & ~i_wont_support_decrypt)
|
#define I_SUPPORT_DECRYPT (i_support_decrypt & ~i_wont_support_decrypt)
|
||||||
|
|
||||||
static long remote_supports_encrypt = 0;
|
static u_long remote_supports_encrypt = 0;
|
||||||
static long remote_supports_decrypt = 0;
|
static u_long remote_supports_decrypt = 0;
|
||||||
|
|
||||||
static Encryptions encryptions[] = {
|
static Encryptions encryptions[] = {
|
||||||
{ "DES_CFB64", ENCTYPE_DES_CFB64,
|
{ "DES_CFB64", ENCTYPE_DES_CFB64,
|
||||||
|
Loading…
Reference in New Issue
Block a user