Apply patch: ncpfs-hg-commit-431.patch

This commit is contained in:
Mario Fetka
2026-04-28 20:56:03 +02:00
parent b417a518c5
commit 4d94ea705a
96 changed files with 3398 additions and 431 deletions

View File

@@ -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)