diff options
author | Günther Deschner <gd@samba.org> | 2008-10-29 21:04:31 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-10-31 02:44:29 +0100 |
commit | 0b95cb251ce0043e393139a22a0f3ac6121406c5 (patch) | |
tree | 8bc527f53d2abf8c8768ac7d581c3cf9ba0a5280 /source4/torture/libnet | |
parent | 4b8606f616cdd2fe885729a044d6139fc0001780 (diff) | |
download | samba-0b95cb251ce0043e393139a22a0f3ac6121406c5.tar.gz samba-0b95cb251ce0043e393139a22a0f3ac6121406c5.tar.bz2 samba-0b95cb251ce0043e393139a22a0f3ac6121406c5.zip |
s4-srvsvc: merge srvsvc_NetShareInfo502 from s3.
Apparently both s3 and s4 are not entirely correct one this. metze is looking
into hand-marshalling security descriptors so this will fix this finally. For
now, just keep the two in sync.
Guenther
Diffstat (limited to 'source4/torture/libnet')
-rw-r--r-- | source4/torture/libnet/libnet_share.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/torture/libnet/libnet_share.c b/source4/torture/libnet/libnet_share.c index 6bc5be40a6..76a29851e1 100644 --- a/source4/torture/libnet/libnet_share.c +++ b/source4/torture/libnet/libnet_share.c @@ -102,11 +102,11 @@ static void test_displayshares(struct libnet_ListShares s) for (j = 0; j < ARRAY_SIZE(share_types); j++) { if (share_types[j].type == info->type) break; } - d_printf("\t[%d] %s\t%s\n\t %s\n\t [perms=0x%08x, max_usr=%d, cur_usr=%d, path=%s, pass=%s, unknown=0x%08x]\n", + d_printf("\t[%d] %s\t%s\n\t %s\n\t [perms=0x%08x, max_usr=%d, cur_usr=%d, path=%s, pass=%s]\n", i, info->name, share_types[j].desc, info->comment, info->permissions, info->max_users, info->current_users, info->path, - info->password, info->unknown); + info->password); } break; } |