Apply patch: ncpfs-hg-commit-431.patch
This commit is contained in:
@@ -50,8 +50,8 @@
|
||||
|
||||
struct ncp_sign_init
|
||||
{
|
||||
char sign_root[8];
|
||||
char sign_last[16];
|
||||
unsigned char sign_root[8];
|
||||
unsigned char sign_last[16];
|
||||
};
|
||||
|
||||
union ncp_sockaddr {
|
||||
@@ -72,7 +72,7 @@ union ncp_sockaddr {
|
||||
struct ncp_ioctl_request {
|
||||
unsigned int function;
|
||||
unsigned int size;
|
||||
char *data;
|
||||
unsigned char *data;
|
||||
};
|
||||
|
||||
struct ncp_fs_info {
|
||||
@@ -130,13 +130,13 @@ struct ncp_privatedata_ioctl
|
||||
struct ncp_nls_ioctl_old
|
||||
{
|
||||
int codepage;
|
||||
unsigned char iocharset[NCP_IOCSNAME_LEN+1];
|
||||
char iocharset[NCP_IOCSNAME_LEN+1];
|
||||
};
|
||||
|
||||
struct ncp_nls_ioctl
|
||||
{
|
||||
unsigned char codepage[NCP_IOCSNAME_LEN+1];
|
||||
unsigned char iocharset[NCP_IOCSNAME_LEN+1];
|
||||
char codepage[NCP_IOCSNAME_LEN+1];
|
||||
char iocharset[NCP_IOCSNAME_LEN+1];
|
||||
};
|
||||
|
||||
#define NCP_IOC_NCPREQUEST _IOR('n', 1, struct ncp_ioctl_request)
|
||||
|
||||
Reference in New Issue
Block a user