mintty --log overwrites existing logfile in place

Christian Franke Christian.Franke@t-online.de
Thu Aug 4 09:57:00 GMT 2011


The mintty --log option is very useful but opens logfile without O_TRUNC
or O_APPEND:

mintty-1.0.1/child.c:
  // Open log file if any
  if (*cfg.log) {
    log_fd = open(cfg.log, O_WRONLY | O_CREAT, 0600);
    if (log_fd < 0)
      error("open log file");
  } 

Then it is sometimes difficult to determine where the new log output
ends :-)
I would suggest to add O_APPEND.

Thanks,
Christian




--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple



More information about the Cygwin mailing list