summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar grunfink2022-12-01 18:40:49 +0000
committerGravatar grunfink2022-12-01 18:40:49 +0000
commit8ac071ae8da1618b1c6d4e20cef7f7a0dd8a511c (patch)
tree9bc198db7f44e3840ac0e3a41b1d29a69bd9f61e
parentVersion 2.12 RELEASED. (diff)
parentthis is actually a pipe not a file, it should be closed as a pipe (diff)
downloadsnac2-8ac071ae8da1618b1c6d4e20cef7f7a0dd8a511c.tar.gz
snac2-8ac071ae8da1618b1c6d4e20cef7f7a0dd8a511c.tar.xz
snac2-8ac071ae8da1618b1c6d4e20cef7f7a0dd8a511c.zip
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
-rw-r--r--activitypub.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/activitypub.c b/activitypub.c
index bb091ff..5f26f73 100644
--- a/activitypub.c
+++ b/activitypub.c
@@ -1017,10 +1017,10 @@ void process_queue(snac *snac)
1017 FILE *f; 1017 FILE *f;
1018 int ok = 0; 1018 int ok = 0;
1019 1019
1020 if ((f = popen("/usr/sbin/sendmail -t", "w")) != NULL) { 1020 f = popen("/usr/sbin/sendmail -t", "w");
1021 if (f) {
1021 fprintf(f, "%s\n", msg); 1022 fprintf(f, "%s\n", msg);
1022 1023 if (pclose(f) != EOF) //this is a pipe stream not just a file
1023 if (fclose(f) != EOF)
1024 ok = 1; 1024 ok = 1;
1025 } 1025 }
1026 1026