diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2012-12-15 12:13:35 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2012-12-15 12:13:35 +0100 |
commit | 99933fd3561df12ed81304eaf444c1d7d1060f38 (patch) | |
tree | 6ea4c358358901c27f828437d12b92e2f20fae5f /pynslcd/tio.py | |
parent | 5d7483715aceb4f1f50d0b2dfbca5510b598191a (diff) |
merge config.py into constants.py and generate it from configure
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1863 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'pynslcd/tio.py')
-rw-r--r-- | pynslcd/tio.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pynslcd/tio.py b/pynslcd/tio.py index 9c43ac2..6394acf 100644 --- a/pynslcd/tio.py +++ b/pynslcd/tio.py @@ -26,13 +26,13 @@ import socket # definition for reading and writing INT32 values _int32 = struct.Struct('i') -# FIXME: use something from config.py to determine the correct size +# FIXME: use something from constants.py to determine the correct size _uid_t = struct.Struct('i') -# FIXME: use something from config.py to determine the correct size +# FIXME: use something from constants.py to determine the correct size _gid_t = struct.Struct('i') -# FIXME: use something from config.py to determine the correct size +# FIXME: use something from constants.py to determine the correct size _struct_timeval = struct.Struct('ll') |