summaryrefslogtreecommitdiff
path: root/activitypub.c
diff options
context:
space:
mode:
Diffstat (limited to 'activitypub.c')
-rw-r--r--activitypub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c
index 228aabe..28c8045 100644
--- a/activitypub.c
+++ b/activitypub.c
@@ -1021,7 +1021,7 @@ void process_queue(snac *snac)
1021 if ((f = popen("/usr/sbin/sendmail -t", "w")) != NULL) { 1021 if ((f = popen("/usr/sbin/sendmail -t", "w")) != NULL) {
1022 fprintf(f, "%s\n", msg); 1022 fprintf(f, "%s\n", msg);
1023 1023
1024 if (fclose(f) != EOF) 1024 if (pclose(f) != -1)
1025 ok = 1; 1025 ok = 1;
1026 } 1026 }
1027 1027