diff options
author | Tim Potter <tpot@samba.org> | 2003-03-24 06:31:49 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-03-24 06:31:49 +0000 |
commit | 55a341a367a7d1b18ae7ef04678479eb74b68ea3 (patch) | |
tree | 56646662c252cb5a90de5e3ab9f59c6cfbfd19ca /source/python/setup.py | |
parent | 5bf945d86927e09cbb665e6fb59111b6bdc60fd4 (diff) | |
download | samba-55a341a367a7d1b18ae7ef04678479eb74b68ea3.tar.gz samba-55a341a367a7d1b18ae7ef04678479eb74b68ea3.tar.xz samba-55a341a367a7d1b18ae7ef04678479eb74b68ea3.zip |
Started working on python routines to add and delete domain users.
Unfortunately users get created with the ACB mask set to disabled and
must change password. The set_user_info2 call required to fix this
doesn't quite work yet...
Diffstat (limited to 'source/python/setup.py')
-rwxr-xr-x | source/python/setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source/python/setup.py b/source/python/setup.py index 8bc8868a70c..65693310318 100755 --- a/source/python/setup.py +++ b/source/python/setup.py @@ -116,6 +116,7 @@ setup( Extension(name = "samr", sources = [samba_srcdir + "python/py_samr.c", + samba_srcdir + "python/py_conv.c", samba_srcdir + "python/py_samr_conv.c", samba_srcdir + "python/py_common.c"], libraries = lib_list, |