1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s3:rpc_client/rpc_transport_tstream: timeout should be unsigned int

metze
This commit is contained in:
Stefan Metzmacher 2010-12-14 18:19:14 +01:00
parent e55426fe79
commit 9a14dace22

View File

@ -27,7 +27,7 @@ struct rpc_tstream_state {
struct tstream_context *stream;
struct tevent_queue *read_queue;
struct tevent_queue *write_queue;
int timeout;
unsigned int timeout;
};
static void rpc_tstream_disconnect(struct rpc_tstream_state *s)