Commit 1b8fb627 authored by Andreas Jung's avatar Andreas Jung

parent 185a39e1
...@@ -51,6 +51,8 @@ Zope Changes ...@@ -51,6 +51,8 @@ Zope Changes
Bugs fixed Bugs fixed
- Collector #1648: Fix bug in Medusa FTP
- Collector #1667: allow 'max-number-of-session-objects 0' to have - Collector #1667: allow 'max-number-of-session-objects 0' to have
the same effect as setting the value via the web interface (i.e., the same effect as setting the value via the web interface (i.e.,
make the number of session objects unlimited, rather than falling make the number of session objects unlimited, rather than falling
......
...@@ -392,8 +392,8 @@ def unix_longify (file, stat_info): ...@@ -392,8 +392,8 @@ def unix_longify (file, stat_info):
else: else:
dirchar = '-' dirchar = '-'
date = ls_date (long(time.time()), stat_info[stat.ST_MTIME]) date = ls_date (long(time.time()), stat_info[stat.ST_MTIME])
user = str(stat_info[stat.ST_UID].replace(' ','_')) user = str(stat_info[stat.ST_UID]).replace(' ','_')
group= str(stat_info[stat.ST_GID].replace(' ','_')) group= str(stat_info[stat.ST_GID]).replace(' ','_')
if user=='System_Processes': user='Sysproc' if user=='System_Processes': user='Sysproc'
if group=='System_Processes': group='Sysproc' if group=='System_Processes': group='Sysproc'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment