1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

Remove unused arguments in read_package_entry() in the eventlog rpc server.

Guenther
(This used to be commit c2e786d4e2)
This commit is contained in:
Günther Deschner 2008-02-04 11:33:06 +01:00
parent 72ea99a0aa
commit a31829ffcd

View File

@ -493,8 +493,6 @@ done:
********************************************************************/
static Eventlog_entry *read_package_entry( prs_struct * ps,
EVENTLOG_Q_READ_EVENTLOG * q_u,
EVENTLOG_R_READ_EVENTLOG * r_u,
Eventlog_entry * entry )
{
uint8 *offset;
@ -773,7 +771,7 @@ NTSTATUS _eventlog_read_eventlog( pipes_struct * p,
/* Now see if there is enough room to add */
if ( !(ee_new = read_package_entry( ps, q_u, r_u, entry )) )
if ( !(ee_new = read_package_entry( ps, entry )) )
return NT_STATUS_NO_MEMORY;
if ( r_u->num_bytes_in_resp + ee_new->record.length > q_u->max_read_size ) {