Make sure data is unsigned.
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@580 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -224,7 +224,7 @@ int krb4_getc(FILE *F)
|
||||
}
|
||||
if(bytes){
|
||||
bytes--;
|
||||
return data_buffer[index++];
|
||||
return (unsigned char)data_buffer[index++];
|
||||
}
|
||||
return EOF;
|
||||
}
|
||||
|
Reference in New Issue
Block a user