mirror of
https://github.com/samba-team/samba.git
synced 2025-11-13 08:23:49 +03:00
s3-rpc_server: Fixed debug messages of srv_pipe_hnd.
This commit is contained in:
@@ -280,7 +280,7 @@ static ssize_t read_from_internal_pipe(struct pipes_struct *p, char *data,
|
||||
}
|
||||
|
||||
DEBUG(6,(" name: %s len: %u\n",
|
||||
get_pipe_name_from_syntax(talloc_tos(), &p->syntax),
|
||||
get_pipe_name_from_syntax(talloc_tos(), &p->contexts->syntax),
|
||||
(unsigned int)n));
|
||||
|
||||
/*
|
||||
@@ -298,7 +298,7 @@ static ssize_t read_from_internal_pipe(struct pipes_struct *p, char *data,
|
||||
DEBUG(5,("read_from_pipe: too large read (%u) requested on "
|
||||
"pipe %s. We can only service %d sized reads.\n",
|
||||
(unsigned int)n,
|
||||
get_pipe_name_from_syntax(talloc_tos(), &p->syntax),
|
||||
get_pipe_name_from_syntax(talloc_tos(), &p->contexts->syntax),
|
||||
RPC_MAX_PDU_FRAG_LEN ));
|
||||
n = RPC_MAX_PDU_FRAG_LEN;
|
||||
}
|
||||
@@ -319,7 +319,7 @@ static ssize_t read_from_internal_pipe(struct pipes_struct *p, char *data,
|
||||
|
||||
DEBUG(10,("read_from_pipe: %s: current_pdu_len = %u, "
|
||||
"current_pdu_sent = %u returning %d bytes.\n",
|
||||
get_pipe_name_from_syntax(talloc_tos(), &p->syntax),
|
||||
get_pipe_name_from_syntax(talloc_tos(), &p->contexts->syntax),
|
||||
(unsigned int)p->out_data.frag.length,
|
||||
(unsigned int)p->out_data.current_pdu_sent,
|
||||
(int)data_returned));
|
||||
@@ -340,7 +340,7 @@ static ssize_t read_from_internal_pipe(struct pipes_struct *p, char *data,
|
||||
|
||||
DEBUG(10,("read_from_pipe: %s: fault_state = %d : data_sent_length "
|
||||
"= %u, p->out_data.rdata.length = %u.\n",
|
||||
get_pipe_name_from_syntax(talloc_tos(), &p->syntax),
|
||||
get_pipe_name_from_syntax(talloc_tos(), &p->contexts->syntax),
|
||||
(int)p->fault_state,
|
||||
(unsigned int)p->out_data.data_sent_length,
|
||||
(unsigned int)p->out_data.rdata.length));
|
||||
@@ -362,7 +362,7 @@ static ssize_t read_from_internal_pipe(struct pipes_struct *p, char *data,
|
||||
|
||||
if(!create_next_pdu(p)) {
|
||||
DEBUG(0,("read_from_pipe: %s: create_next_pdu failed.\n",
|
||||
get_pipe_name_from_syntax(talloc_tos(), &p->syntax)));
|
||||
get_pipe_name_from_syntax(talloc_tos(), &p->contexts->syntax)));
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user