signedness

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@7376 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1999-11-13 04:18:09 +00:00
parent 049073f598
commit a69f4cf6dc
5 changed files with 7 additions and 7 deletions

View File

@@ -86,7 +86,7 @@ static int
convert_file(void)
{
FILE *f;
char buf[1024];
unsigned char buf[1024];
char *fn;
size_t len;
EncryptionKey key;

View File

@@ -300,7 +300,7 @@ display_tokens(int do_verbose)
for (i = 0; k_pioctl(NULL, VIOCGETTOK, &parms, 0) == 0; i++) {
int32_t size_secret_tok, size_public_tok;
char *cell;
unsigned char *cell;
struct ClearToken ct;
unsigned char *r = t;
struct timeval tv;

View File

@@ -43,7 +43,7 @@ RCSID("$Id$");
OM_uint32
gssapi_krb5_verify_header(u_char **str,
size_t total_len,
u_char *type)
char *type)
{
size_t len, len_len, mech_len, foo;
int e;
@@ -85,7 +85,7 @@ OM_uint32
gssapi_krb5_decapsulate(
gss_buffer_t input_token_buffer,
krb5_data *out_data,
u_char *type
char *type
)
{
u_char *p;

View File

@@ -43,7 +43,7 @@ RCSID("$Id$");
OM_uint32
gssapi_krb5_verify_header(u_char **str,
size_t total_len,
u_char *type)
char *type)
{
size_t len, len_len, mech_len, foo;
int e;
@@ -85,7 +85,7 @@ OM_uint32
gssapi_krb5_decapsulate(
gss_buffer_t input_token_buffer,
krb5_data *out_data,
u_char *type
char *type
)
{
u_char *p;

View File

@@ -125,7 +125,7 @@ as_append_char (struct state *state, unsigned char c)
static int
append_number(struct state *state,
unsigned long num, unsigned base, unsigned char *rep,
unsigned long num, unsigned base, char *rep,
int width, int prec, int flags, int minusp)
{
int len = 0;