summaryrefslogtreecommitdiff
path: root/source4/libnet/libnet_user.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-07-15 20:45:53 +0200
committerStefan Metzmacher <metze@samba.org>2009-07-15 20:47:00 +0200
commit722765213bcda1de93d2fe7d64b89c8b7a37f29e (patch)
treed3d9c162a070db37ee1596427cd2fa68481bd138 /source4/libnet/libnet_user.c
parentdea2e4690a188a5ff06c9df354befe65cbcb320c (diff)
downloadsamba-722765213bcda1de93d2fe7d64b89c8b7a37f29e.tar.gz
samba-722765213bcda1de93d2fe7d64b89c8b7a37f29e.tar.bz2
samba-722765213bcda1de93d2fe7d64b89c8b7a37f29e.zip
s4:libnet: rename uint => uint32_t because uint is not portable
metze
Diffstat (limited to 'source4/libnet/libnet_user.c')
-rw-r--r--source4/libnet/libnet_user.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libnet/libnet_user.c b/source4/libnet/libnet_user.c
index 8606d0856e..dd4d501c17 100644
--- a/source4/libnet/libnet_user.c
+++ b/source4/libnet/libnet_user.c
@@ -945,7 +945,7 @@ struct composite_context* libnet_UserList_send(struct libnet_context *ctx,
/* store the arguments in the state structure */
s->ctx = ctx;
s->page_size = r->in.page_size;
- s->resume_index = (uint32_t)r->in.resume_index;
+ s->resume_index = r->in.resume_index;
s->domain_name = talloc_strdup(c, r->in.domain_name);
s->monitor_fn = monitor;