diff options
author | Gregor Beck <gbeck@sernet.de> | 2011-10-12 14:34:45 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-10-12 22:45:53 +0200 |
commit | 89b76b5611cfc29fff348ca946a4d94b727ea0af (patch) | |
tree | cbdb0f459c21f1906b95d03a4ccc986d07478ad5 /source3/utils | |
parent | 491afa3a4c0536bd797ab5a1cd1f8c82183122ce (diff) | |
download | samba-89b76b5611cfc29fff348ca946a4d94b727ea0af.tar.gz samba-89b76b5611cfc29fff348ca946a4d94b727ea0af.tar.bz2 samba-89b76b5611cfc29fff348ca946a4d94b727ea0af.zip |
s3:smbcacls: fix violation of coding conventions
Signed-off-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/smbcacls.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/utils/smbcacls.c b/source3/utils/smbcacls.c index 06166503cf..4cc88850e8 100644 --- a/source3/utils/smbcacls.c +++ b/source3/utils/smbcacls.c @@ -223,7 +223,8 @@ done: return status; } -static struct dom_sid* get_domain_sid(struct cli_state *cli) { +static struct dom_sid *get_domain_sid(struct cli_state *cli) +{ NTSTATUS status; struct dom_sid *sid = talloc(talloc_tos(), struct dom_sid); |