# HG changeset patch # User Bruno Haible # Date 1160233754 0 # Node ID fd5a9db5be5b903275c7cf98da5c1809b6d11895 # Parent 8bace4b08db5a0eaff5c20bb707970b0f3f737a3 Comment changes. diff --git a/lib/clean-temp.c b/lib/clean-temp.c --- a/lib/clean-temp.c +++ b/lib/clean-temp.c @@ -589,7 +589,7 @@ 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 @@ 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 --- a/lib/clean-temp.h +++ b/lib/clean-temp.h @@ -36,7 +36,7 @@ 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