nightmaremail

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 3772dd95f6584cc6788fa4ff28d7b232a4c8d43a
parent ac43d259085369f64209b105db0139e85a6bd816
Author: Rolf Eike Beer <eike@sf-mail.de>
Date:   Fri, 12 Jul 2019 18:44:28 +0200

add missing project includes to several .c files

Diffstat:
MMakefile | 6+++---
Mqmail-lspawn.c | 2++
Mqmail-qmqpd.c | 2++
3 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -1215,7 +1215,7 @@ qmail-lspawn.8 qmail-lspawn.o: \ compile qmail-lspawn.c fd.h wait.h prot.h substdio.h stralloc.h \ gen_alloc.h scan.h exit.h fork.h error.h cdb.h uint32.h case.h \ -slurpclose.h auto_qmail.h auto_uids.h qlx.h +slurpclose.h auto_qmail.h auto_uids.h qlx.h byte.h open.h ./compile qmail-lspawn.c qmail-newmrh: \ @@ -1364,8 +1364,8 @@ qmail-qmqpd.8 nroff -man qmail-qmqpd.8 > qmail-qmqpd.0 qmail-qmqpd.o: \ -compile qmail-qmqpd.c auto_qmail.h qmail.h substdio.h received.h \ -sig.h substdio.h readwrite.h exit.h now.h datetime.h fmt.h env.h +compile qmail-qmqpd.c auto_qmail.h qmail.h substdio.h received.h str.h \ +sig.h substdio.h readwrite.h exit.h now.h datetime.h fmt.h env.h byte.h ./compile qmail-qmqpd.c qmail-qmtpd: \ diff --git a/qmail-lspawn.c b/qmail-lspawn.c @@ -7,8 +7,10 @@ #include "exit.h" #include "fork.h" #include "error.h" +#include "byte.h" #include "cdb.h" #include "case.h" +#include "open.h" #include "slurpclose.h" #include "auto_qmail.h" #include "auto_uids.h" diff --git a/qmail-qmqpd.c b/qmail-qmqpd.c @@ -7,7 +7,9 @@ #include "exit.h" #include "now.h" #include "fmt.h" +#include "byte.h" #include "env.h" +#include "str.h" void resources() { _exit(111); }