From: Bruno Haible Date: Sat, 7 Oct 2006 15:09:14 +0000 (+0000) Subject: Comment changes. X-Git-Tag: cvs-readonly~1771 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=9779c75032dc76d2a77177bb0bfd66243ec57673;p=gnulib.git Comment changes. --- diff --git a/lib/clean-temp.c b/lib/clean-temp.c index 7347aaf8e..36a529422 100644 --- a/lib/clean-temp.c +++ b/lib/clean-temp.c @@ -589,7 +589,7 @@ open_temp (const char *file_name, int flags, mode_t mode) int saved_errno; block_fatal_signals (); - fd = open (file_name, flags, mode); + fd = open (file_name, flags, mode); /* actually open or open_safer */ saved_errno = errno; if (fd >= 0) register_fd (fd); @@ -607,7 +607,7 @@ fopen_temp (const char *file_name, const char *mode) int saved_errno; block_fatal_signals (); - fp = fopen (file_name, mode); + fp = fopen (file_name, mode); /* actually fopen or fopen_safer */ saved_errno = errno; if (fp != NULL) { diff --git a/lib/clean-temp.h b/lib/clean-temp.h index 7edb94484..6e7c3e6c9 100644 --- a/lib/clean-temp.h +++ b/lib/clean-temp.h @@ -36,7 +36,7 @@ extern "C" { Also, open file descriptors need to be closed before the temporary files and the temporary directories can be removed, because only on Unix - (excluding Cygwin) one can remove directories containing open files. + (excluding Cygwin) can one remove directories containing open files. This module provides support for temporary directories and temporary files inside these temporary directories. Temporary files without temporary