mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-15 01:55:03 +00:00
Merge pull request 'this is actually a pipe not a file, it should be closed as a pipe' (#6) from themusicgod1/snac2:master into master
Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/6
This commit is contained in:
commit
8ac071ae8d
1 changed files with 3 additions and 3 deletions
|
@ -1017,10 +1017,10 @@ void process_queue(snac *snac)
|
|||
FILE *f;
|
||||
int ok = 0;
|
||||
|
||||
if ((f = popen("/usr/sbin/sendmail -t", "w")) != NULL) {
|
||||
f = popen("/usr/sbin/sendmail -t", "w");
|
||||
if (f) {
|
||||
fprintf(f, "%s\n", msg);
|
||||
|
||||
if (fclose(f) != EOF)
|
||||
if (pclose(f) != EOF) //this is a pipe stream not just a file
|
||||
ok = 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue