ncpcalls: rename remaining C32 transport symbols
Rename the remaining C32-prefixed transport helpers, probe helpers, types and constants to protocol-oriented NCP names. This removes implementation-oriented c32/C32 naming from the shared NCP API and transport layer while keeping the current c32ncp.c/c32ncp.h file names until the later ncpapi.c/ncpapi.h rename. The new names avoid conflicts by using ncp_* helper names and NCP_* type/constant prefixes. No behavior change.
This commit is contained in:
4
rights.c
4
rights.c
@@ -110,7 +110,7 @@ static void rights_ncp_path(char *dst, char *src, int max)
|
||||
}
|
||||
|
||||
|
||||
static int rights_get_ncp_info(char *path, C32_NDIR_INFO *info)
|
||||
static int rights_get_ncp_info(char *path, NCP_NDIR_INFO *info)
|
||||
{
|
||||
uint8 connid = 0;
|
||||
uint8 dhandle = 0;
|
||||
@@ -131,7 +131,7 @@ static int rights_get_ncp_info(char *path, C32_NDIR_INFO *info)
|
||||
|
||||
static int rights_path_exists(char *path, int *is_dir)
|
||||
{
|
||||
C32_NDIR_INFO info;
|
||||
NCP_NDIR_INFO info;
|
||||
|
||||
if (rights_get_ncp_info(path, &info))
|
||||
return(0);
|
||||
|
||||
Reference in New Issue
Block a user