1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-29 21:47:30 +03:00

r19849: Fix compilation after idl changes.

This commit is contained in:
Jelmer Vernooij 2006-11-22 21:40:23 +00:00 committed by Gerald (Jerry) Carter
parent 75515c5fda
commit b7f22408e9

View File

@ -27,7 +27,7 @@ static NTSTATUS cmd_unixinfo_uid2sid(struct rpc_pipe_client *cli,
int argc, const char **argv)
{
uid_t uid;
DOM_SID *sid;
DOM_SID sid;
NTSTATUS result;
if (argc != 2) {
@ -41,7 +41,7 @@ static NTSTATUS cmd_unixinfo_uid2sid(struct rpc_pipe_client *cli,
if (!NT_STATUS_IS_OK(result))
goto done;
printf("%s\n", sid_string_static(sid));
printf("%s\n", sid_string_static(&sid));
done:
return result;
@ -81,7 +81,7 @@ static NTSTATUS cmd_unixinfo_gid2sid(struct rpc_pipe_client *cli,
int argc, const char **argv)
{
gid_t gid;
DOM_SID *sid;
DOM_SID sid;
NTSTATUS result;
if (argc != 2) {
@ -96,7 +96,7 @@ static NTSTATUS cmd_unixinfo_gid2sid(struct rpc_pipe_client *cli,
if (!NT_STATUS_IS_OK(result))
goto done;
printf("%s\n", sid_string_static(sid));
printf("%s\n", sid_string_static(&sid));
done:
return result;