diff options
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') |