1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

r893: a few more _t conversions

(This used to be commit 66eb46dbb1486c5916194bf6b303cf16373a272a)
This commit is contained in:
Andrew Tridgell 2004-05-26 01:13:12 +00:00 committed by Gerald (Jerry) Carter
parent e754760d23
commit 47864891ff
3 changed files with 4 additions and 4 deletions

View File

@ -341,7 +341,7 @@ typedef void (*fail_function)(struct subnet_record *, struct response_record *,
typedef void (*register_name_success_function)( struct subnet_record *,
struct userdata_struct *,
struct nmb_name *,
uint16,
uint16_t,
int,
struct in_addr);
typedef void (*register_name_fail_function)( struct subnet_record *,
@ -359,7 +359,7 @@ typedef void (*release_name_fail_function)( struct subnet_record *,
typedef void (*refresh_name_success_function)( struct subnet_record *,
struct userdata_struct *,
struct nmb_name *,
uint16,
uint16_t,
int,
struct in_addr);
typedef void (*refresh_name_fail_function)( struct subnet_record *,

View File

@ -61,7 +61,7 @@ void reg_val_free( REG_VAL *val )
/**********************************************************************
*********************************************************************/
uint8* reg_val_data_blk( REG_VAL *val )
uint8_t * reg_val_data_blk( REG_VAL *val )
{
return val->data_blk;
}

View File

@ -50,7 +50,7 @@ BOOL cli_oplock_ack(struct cli_tree *tree, uint16_t fnum, uint16_t ack_level)
set the oplock handler for a connection
****************************************************************************/
void cli_oplock_handler(struct cli_transport *transport,
BOOL (*handler)(struct cli_transport *, uint16, uint16, uint8, void *),
BOOL (*handler)(struct cli_transport *, uint16_t, uint16_t, uint8_t, void *),
void *private)
{
transport->oplock.handler = handler;