summaryrefslogtreecommitdiffstats
path: root/source/rpcclient/display.c
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1999-02-23 22:39:54 +0000
committerLuke Leighton <lkcl@samba.org>1999-02-23 22:39:54 +0000
commitec1b7000fd88c5a08e438c7033f60e49b9ec44a8 (patch)
treeac6d779fb85bf5d057d23a010fe1c352f09d7309 /source/rpcclient/display.c
parente164b5080ca966de4227277f7ac031bc96d056ad (diff)
downloadsamba-ec1b7000fd88c5a08e438c7033f60e49b9ec44a8.tar.gz
samba-ec1b7000fd88c5a08e438c7033f60e49b9ec44a8.tar.xz
samba-ec1b7000fd88c5a08e438c7033f60e49b9ec44a8.zip
added jeremy's new c++-like code for parsing of security descriptors.
Diffstat (limited to 'source/rpcclient/display.c')
-rw-r--r--source/rpcclient/display.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/rpcclient/display.c b/source/rpcclient/display.c
index ce464a72e6d..060dac8d554 100644
--- a/source/rpcclient/display.c
+++ b/source/rpcclient/display.c
@@ -1355,9 +1355,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[i]);
- display_sec_ace(out_hnd, ACTION_ENUMERATE, &sec_acl->ace[i]);
- display_sec_ace(out_hnd, ACTION_FOOTER , &sec_acl->ace[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]);
}
}