mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
Attempt to fix the merged build
This commit is contained in:
parent
4b26c7bbf4
commit
b0c92548d8
@ -330,7 +330,7 @@ NTSTATUS nbt_set_incoming_handler(struct nbt_name_socket *nbtsock,
|
||||
NTSTATUS nbt_set_unexpected_handler(struct nbt_name_socket *nbtsock,
|
||||
void (*handler)(struct nbt_name_socket *, struct nbt_name_packet *,
|
||||
struct socket_address *),
|
||||
void *private);
|
||||
void *private_data);
|
||||
NTSTATUS nbt_name_reply_send(struct nbt_name_socket *nbtsock,
|
||||
struct socket_address *dest,
|
||||
struct nbt_name_packet *request);
|
||||
|
@ -522,10 +522,10 @@ _PUBLIC_ NTSTATUS nbt_set_incoming_handler(struct nbt_name_socket *nbtsock,
|
||||
NTSTATUS nbt_set_unexpected_handler(struct nbt_name_socket *nbtsock,
|
||||
void (*handler)(struct nbt_name_socket *, struct nbt_name_packet *,
|
||||
struct socket_address *),
|
||||
void *private)
|
||||
void *private_data)
|
||||
{
|
||||
nbtsock->unexpected.handler = handler;
|
||||
nbtsock->unexpected.private_data = private;
|
||||
nbtsock->unexpected.private_data = private_data;
|
||||
EVENT_FD_READABLE(nbtsock->fde);
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user