1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

A cool idea from mbp: create a big shared library of all Samba objects

which we can use to link against Samba unit test programs.  Now we can
compile and link unit tests without having to create 4MB executables
for each program

It's called libbigballofmud.so both to discourage casual usage and
also to reflect what the dependencies within Samba have become.
(This used to be commit fdce4be719)
This commit is contained in:
Tim Potter 2002-11-15 00:20:55 +00:00
parent ae23dfd427
commit e0d81b7728

View File

@ -844,7 +844,7 @@ BOOL rpc_api_pipe_req(struct cli_state *cli, uint8 op_num,
uint32 data_len, send_size;
uint8 flags = 0;
uint32 crc32 = 0;
uint32 callid;
uint32 callid = 0;
/*
* how much will we send this time
@ -862,10 +862,9 @@ BOOL rpc_api_pipe_req(struct cli_state *cli, uint8 op_num,
return False;
}
if (data_left == prs_offset(data)) {
if (data_left == prs_offset(data))
flags |= RPC_FLG_FIRST;
callid = 0;
}
if (data_left < max_data)
flags |= RPC_FLG_LAST;
/*