summaryrefslogtreecommitdiff
path: root/source4/libnet/libnet_user.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2008-02-28 10:43:57 +1100
committerAndrew Bartlett <abartlet@samba.org>2008-02-28 10:43:57 +1100
commit2a209a6a9dcd0c6b7814fa7eb3838dbaf5d57481 (patch)
treef32d81caee74ec343aefacf6de95e67058db2bec /source4/libnet/libnet_user.c
parentb33873ae5d13993030f41f5304d78640fe07d25c (diff)
downloadsamba-2a209a6a9dcd0c6b7814fa7eb3838dbaf5d57481.tar.gz
samba-2a209a6a9dcd0c6b7814fa7eb3838dbaf5d57481.tar.bz2
samba-2a209a6a9dcd0c6b7814fa7eb3838dbaf5d57481.zip
Ensure we don't try and set the acct_flags if they are 0 (meaning
unchanged in this interface). We seem to have two very similar interfaces here, and this is the poorer interface, for this reason. Andrew Bartlett (This used to be commit 582073eff1f21f81abb3e5f1ce2eca4ebef56a00)
Diffstat (limited to 'source4/libnet/libnet_user.c')
-rw-r--r--source4/libnet/libnet_user.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libnet/libnet_user.c b/source4/libnet/libnet_user.c
index d5ccf34a57..678c7a226e 100644
--- a/source4/libnet/libnet_user.c
+++ b/source4/libnet/libnet_user.c
@@ -534,7 +534,7 @@ static NTSTATUS set_user_changes(TALLOC_CTX *mem_ctx, struct usermod_change *mod
SET_FIELD_NTTIME(r->in, user, mod, acct_expiry, USERMOD_FIELD_ACCT_EXPIRY);
/* account flags change */
- SET_FIELD_UINT32(r->in, user, mod, acct_flags, USERMOD_FIELD_ACCT_FLAGS);
+ SET_FIELD_ACCT_FLAGS(r->in, user, mod, acct_flags, USERMOD_FIELD_ACCT_FLAGS);
return NT_STATUS_OK;
}