From 43890972945f19fdf0f009eec03e7d493b2760e9 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 6 Jun 2012 15:28:14 +0200 Subject: s3:include: change connection_struct->cnum to uint32_t Pair-Programmed-With: Stefan Metzmacher --- source3/smbd/proto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/smbd/proto.h') diff --git a/source3/smbd/proto.h b/source3/smbd/proto.h index d58115703d..b527d208b6 100644 --- a/source3/smbd/proto.h +++ b/source3/smbd/proto.h @@ -147,7 +147,7 @@ void conn_init(struct smbd_server_connection *sconn); int conn_num_open(struct smbd_server_connection *sconn); bool conn_snum_used(struct smbd_server_connection *sconn, int snum); connection_struct *conn_find(struct smbd_server_connection *sconn, - unsigned cnum); + uint32_t cnum); connection_struct *conn_new(struct smbd_server_connection *sconn); void conn_close_all(struct smbd_server_connection *sconn); bool conn_idle_all(struct smbd_server_connection *sconn, time_t t); -- cgit