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

Αρχική Σελίδα
Delete this message
Reply to this message
Συντάκτης: Warner Losh
Ημερομηνία:  
Προς: Philip Hazel
Υ/ο: 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