Re: Important Bug Fix (Was Re: Truncation of Majordomo diges…

トップ ページ
このメッセージを削除
このメッセージに返信
著者: Warner Losh
日付:  
To: Philip Hazel
CC: Pete Ashdown, Exim Mailing List
題目: Re: Important Bug Fix (Was Re: Truncation of Majordomo digest messages?)
In message <Pine.SOL.3.96.970625105253.6714I-100000@???> Philip Hazel writes:
: +       close(deliver_datafile);
: +       sprintf(spoolname, "%s/input/%s-D", spool_directory, message_id);
: +       deliver_datafile = open(spoolname, O_RDWR | O_APPEND);


Wouldn't dup(2) do the trick here? Or is there something subtle that
I'm missing about how dup(2) works?

Warner