1
0
mirror of https://https.git.savannah.gnu.org/git/gnulib.git synced 2026-09-01 02:34:55 +00:00

Comment changes.

This commit is contained in:
Bruno Haible
2006-10-07 15:09:14 +00:00
parent e8886c9083
commit 9779c75032
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -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)
{
+1 -1
View File
@@ -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