diff options
author | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2009-11-21 19:03:59 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-03-01 18:45:20 +0100 |
commit | b963741aae82b721655e36e8c62b678acff2e210 (patch) | |
tree | c33037ef3a8da271805dc3b61209441c4e7fcccb | |
parent | 932a986a4f3122555654d36d838996a90b1e69a7 (diff) | |
download | samba-b963741aae82b721655e36e8c62b678acff2e210.tar.gz samba-b963741aae82b721655e36e8c62b678acff2e210.tar.bz2 samba-b963741aae82b721655e36e8c62b678acff2e210.zip |
s4:unixinfo RPC - make this one "signed-safe"
-rw-r--r-- | source4/rpc_server/unixinfo/dcesrv_unixinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/rpc_server/unixinfo/dcesrv_unixinfo.c b/source4/rpc_server/unixinfo/dcesrv_unixinfo.c index 0a1e9f645d..2ef34ce93a 100644 --- a/source4/rpc_server/unixinfo/dcesrv_unixinfo.c +++ b/source4/rpc_server/unixinfo/dcesrv_unixinfo.c @@ -195,7 +195,7 @@ static NTSTATUS dcesrv_unixinfo_GetPWUid(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, struct unixinfo_GetPWUid *r) { - int i; + unsigned int i; *r->out.count = 0; |