diff options
author | Günther Deschner <gd@samba.org> | 2009-06-12 15:20:48 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-07-13 15:36:07 +0200 |
commit | 05fbe0c7f763fbe8c1c48eb82ebdfe04bfa034ea (patch) | |
tree | 78154513ca730597fd302220e49a4b79c5606274 /source3/lib/netapi | |
parent | 8db45607f8d19781d33ebff0d0b13c473f34009b (diff) | |
download | samba-05fbe0c7f763fbe8c1c48eb82ebdfe04bfa034ea.tar.gz samba-05fbe0c7f763fbe8c1c48eb82ebdfe04bfa034ea.tar.xz samba-05fbe0c7f763fbe8c1c48eb82ebdfe04bfa034ea.zip |
libds: merge the UF<->ACB flag mapping functions.
Guenther
Diffstat (limited to 'source3/lib/netapi')
-rw-r--r-- | source3/lib/netapi/user.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/netapi/user.c b/source3/lib/netapi/user.c index 39472b20d7..9fa3ddd9a8 100644 --- a/source3/lib/netapi/user.c +++ b/source3/lib/netapi/user.c @@ -770,7 +770,7 @@ static uint32_t samr_acb_flags_to_netapi_flags(uint32_t acb) { uint32_t fl = UF_SCRIPT; /* god knows why */ - fl |= ads_acb2uf(acb); + fl |= ds_acb2uf(acb); return fl; } |