From 252c9c91abe146e9c6b16d795c6566df4adafe56 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 31 Jan 2005 14:00:43 +0000 Subject: * Topologically sort paths under the references relation to ensure that they are deleted in an order that maintains the closure invariant. * Presence of a path in a temporary roots file does not imply that all paths in its closure are also present, so add the closure. --- src/libutil/util.cc | 1 - 1 file changed, 1 deletion(-) (limited to 'src/libutil/util.cc') diff --git a/src/libutil/util.cc b/src/libutil/util.cc index 611567c12b1b..5b6fb62026c7 100644 --- a/src/libutil/util.cc +++ b/src/libutil/util.cc @@ -407,7 +407,6 @@ AutoCloseFD::operator int() const void AutoCloseFD::close() { if (fd != -1) { - debug(format("closing fd %1%") % fd); if (::close(fd) == -1) /* This should never happen. */ throw SysError("closing file descriptor"); -- cgit 1.4.1