summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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