From: hniksic Date: Sat, 8 Nov 2003 20:41:15 +0000 (-0800) Subject: [svn] Doc fix. X-Git-Tag: v1.13~1438 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=36a5d0b2fe3077c4c4842c3c777914efcc93ac94 [svn] Doc fix. --- diff --git a/src/log.c b/src/log.c index 48cf2c3e..caa8a4e7 100644 --- a/src/log.c +++ b/src/log.c @@ -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; } }