diff options
author | Simo Sorce <idra@samba.org> | 2003-04-05 08:53:23 +0000 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2003-04-05 08:53:23 +0000 |
commit | 5ac94535d7b7ce0cc0d44b9a77d6e42ddfd0cd26 (patch) | |
tree | 8cb393e5bacc44cf488f8f60a548b262eaf93a35 /source/python/py_winbind.c | |
parent | 7dac688c4d296433a62cc8665aab90ce387f6599 (diff) | |
download | samba-5ac94535d7b7ce0cc0d44b9a77d6e42ddfd0cd26.tar.gz samba-5ac94535d7b7ce0cc0d44b9a77d6e42ddfd0cd26.tar.xz samba-5ac94535d7b7ce0cc0d44b9a77d6e42ddfd0cd26.zip |
some more idmapping :)
Diffstat (limited to 'source/python/py_winbind.c')
-rw-r--r-- | source/python/py_winbind.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/python/py_winbind.c b/source/python/py_winbind.c index db66be2321a..0c40861c701 100644 --- a/source/python/py_winbind.c +++ b/source/python/py_winbind.c @@ -261,12 +261,12 @@ static PyObject *py_config_dict(void) /* Winbind uid/gid range */ - if (lp_winbind_uid(&ulow, &uhi)) { + if (lp_idmap_uid(&ulow, &uhi)) { PyDict_SetItemString(result, "uid_low", PyInt_FromLong(ulow)); PyDict_SetItemString(result, "uid_high", PyInt_FromLong(uhi)); } - if (lp_winbind_gid(&glow, &ghi)) { + if (lp_idmap_gid(&glow, &ghi)) { PyDict_SetItemString(result, "gid_low", PyInt_FromLong(glow)); PyDict_SetItemString(result, "gid_high", PyInt_FromLong(ghi)); } |