summaryrefslogtreecommitdiff
path: root/source3/rpcclient/display.c
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2000-06-23 00:09:21 +0000
committerGerald Carter <jerry@samba.org>2000-06-23 00:09:21 +0000
commit3396a1d97850bb705ead64857c22b60a855ccd5a (patch)
tree9740492a84f2eaf7ab8775dcd389f189978563f6 /source3/rpcclient/display.c
parenteecab5c66096cc42323aaa4a796bf4a17e491a00 (diff)
downloadsamba-3396a1d97850bb705ead64857c22b60a855ccd5a.tar.gz
samba-3396a1d97850bb705ead64857c22b60a855ccd5a.tar.bz2
samba-3396a1d97850bb705ead64857c22b60a855ccd5a.zip
just enough to get rpcclient to compile. Look for #if 0
blocks around a few unimplemented functions. Also had to add cli_reg.c to Makefile.in --jerry (This used to be commit 426c43fb5167b042682c22e67871e5ebadb4b769)
Diffstat (limited to 'source3/rpcclient/display.c')
-rw-r--r--source3/rpcclient/display.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/rpcclient/display.c b/source3/rpcclient/display.c
index ddbe435d75..bb0cdac320 100644
--- a/source3/rpcclient/display.c
+++ b/source3/rpcclient/display.c
@@ -1093,9 +1093,9 @@ void display_sec_acl(FILE *out_hnd, enum action_type action, SEC_ACL *sec_acl)
int i;
for (i = 0; i < sec_acl->num_aces; i++)
{
- display_sec_ace(out_hnd, ACTION_HEADER , &sec_acl->ace_list[i]);
- display_sec_ace(out_hnd, ACTION_ENUMERATE, &sec_acl->ace_list[i]);
- display_sec_ace(out_hnd, ACTION_FOOTER , &sec_acl->ace_list[i]);
+ display_sec_ace(out_hnd, ACTION_HEADER , &sec_acl->ace[i]);
+ display_sec_ace(out_hnd, ACTION_ENUMERATE, &sec_acl->ace[i]);
+ display_sec_ace(out_hnd, ACTION_FOOTER , &sec_acl->ace[i]);
}
}