summaryrefslogtreecommitdiff
path: root/source3/utils/net_rpc.c
diff options
context:
space:
mode:
authorHerb Lewis <herb@samba.org>2003-08-15 02:01:56 +0000
committerHerb Lewis <herb@samba.org>2003-08-15 02:01:56 +0000
commitd294d4b98f6555d72323b60d3cc0918bd08f7905 (patch)
treebceac9953655922a903d52563b853037d8cb86a4 /source3/utils/net_rpc.c
parentdb5355cb3acce0e265a003846b82679625df8202 (diff)
downloadsamba-d294d4b98f6555d72323b60d3cc0918bd08f7905.tar.gz
samba-d294d4b98f6555d72323b60d3cc0918bd08f7905.tar.bz2
samba-d294d4b98f6555d72323b60d3cc0918bd08f7905.zip
get rid of warning on IRIX
(This used to be commit 6ec683e24e220a40b02b203b918a0008d90264f0)
Diffstat (limited to 'source3/utils/net_rpc.c')
-rw-r--r--source3/utils/net_rpc.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/source3/utils/net_rpc.c b/source3/utils/net_rpc.c
index 6addd336e2..f14ae94906 100644
--- a/source3/utils/net_rpc.c
+++ b/source3/utils/net_rpc.c
@@ -84,7 +84,14 @@ static DOM_SID *net_get_remote_domain_sid(struct cli_state *cli)
result = cli_lsa_query_info_policy(cli, mem_ctx, &pol, info_class,
domain_name, domain_sid);
if (!NT_STATUS_IS_OK(result)) {
- goto error;
+ error:
+ fprintf(stderr, "could not obtain sid for domain %s\n", cli->domain);
+
+ if (!NT_STATUS_IS_OK(result)) {
+ fprintf(stderr, "error: %s\n", nt_errstr(result));
+ }
+
+ exit(1);
}
cli_lsa_close(cli, mem_ctx, &pol);
@@ -92,15 +99,6 @@ static DOM_SID *net_get_remote_domain_sid(struct cli_state *cli)
talloc_destroy(mem_ctx);
return domain_sid;
-
- error:
- fprintf(stderr, "could not obtain sid for domain %s\n", cli->domain);
-
- if (!NT_STATUS_IS_OK(result)) {
- fprintf(stderr, "error: %s\n", nt_errstr(result));
- }
-
- exit(1);
}
/**