1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Doc fix.

This commit is contained in:
hniksic 2003-11-08 12:41:15 -08:00
parent 4f19ac5494
commit 36a5d0b2fe

View File

@ -553,7 +553,7 @@ log_init (const char *file, int appendp)
logfp = fopen (file, appendp ? "a" : "w");
if (!logfp)
{
perror (opt.lfilename);
fprintf (stderr, "%s: %s: %s\n", exec_name, file, strerror (errno));
exit (1);
}
}
@ -567,16 +567,16 @@ log_init (const char *file, int appendp)
easier on the user. */
logfp = stderr;
/* If the output is a TTY, enable storing, which will make Wget
remember the last several printed messages, to be able to
dump them to a log file in case SIGHUP or SIGUSR1 is received
(or Ctrl+Break is pressed under Windows). */
if (1
#ifdef HAVE_ISATTY
&& isatty (fileno (logfp))
#endif
)
{
/* If the output is a TTY, enable save context, i.e. store
the most recent several messages ("context") and dump
them to a log file in case SIGHUP or SIGUSR1 is received
(or Ctrl+Break is pressed under Windows). */
save_context_p = 1;
}
}