1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

r10217: Remember to exit correctly when we find a matching entry to change.

Jeremy.
This commit is contained in:
Jeremy Allison 2005-09-13 23:11:23 +00:00 committed by Gerald (Jerry) Carter
parent 3d1207aaf6
commit 142c84eb31

View File

@ -429,7 +429,7 @@ int smb_change_share_mode_entry(struct smbdb_ctx *db_ctx,
ld = (struct locking_data *)db_data.dptr; ld = (struct locking_data *)db_data.dptr;
num_share_modes = ld->u.s.num_share_mode_entries; num_share_modes = ld->u.s.num_share_mode_entries;
shares = (share_mode_entry *)(db_data.dptr + sizeof(struct locking_data)); shares = (share_mode_entry *)(db_data.dptr + sizeof(share_mode_entry));
for (i = 0; i < num_share_modes; i++) { for (i = 0; i < num_share_modes; i++) {
share_mode_entry *share = &shares[i]; share_mode_entry *share = &shares[i];
@ -442,6 +442,7 @@ int smb_change_share_mode_entry(struct smbdb_ctx *db_ctx,
if (share_mode_entry_equal(set_entry, share)) { if (share_mode_entry_equal(set_entry, share)) {
create_share_mode_entry(share, new_entry); create_share_mode_entry(share, new_entry);
found_entry = 1;
break; break;
} }
} }