From mboxrd@z Thu Jan 1 00:00:00 1970 From: rmccabe@sourceware.org Date: 3 Aug 2006 18:33:55 -0000 Subject: [Cluster-devel] conga/luci/utils luci_cleanup Message-ID: <20060803183355.15542.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit CVSROOT: /cvs/cluster Module name: conga Changes by: rmccabe at sourceware.org 2006-08-03 18:33:54 Modified files: luci/utils : luci_cleanup Log message: forgot to close /dev/urandom Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/utils/luci_cleanup.diff?cvsroot=cluster&r1=1.1&r2=1.2 --- conga/luci/utils/luci_cleanup 2006/08/03 18:33:04 1.1 +++ conga/luci/utils/luci_cleanup 2006/08/03 18:33:54 1.2 @@ -114,6 +114,7 @@ try: rand = file('/dev/urandom', 'r') passwd = rand.read(16) + rand.close() except: sys.stderr.write('Unable to read from /dev/urandom') return -1