summaryrefslogtreecommitdiffstats
path: root/realrcptto.c
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2013-02-06 01:46:51 +0100
committermanuel <manuel@mausz.at>2013-02-06 01:46:51 +0100
commit56fc66c631719e906ac426db40e37f35e50b8850 (patch)
tree100a00e15d2888f970c7bd7ec57ade2a5b591a2e /realrcptto.c
parentae95d84684e3b9781d380c7b17083095c486ac2e (diff)
downloadqmail-56fc66c631719e906ac426db40e37f35e50b8850.tar.gz
qmail-56fc66c631719e906ac426db40e37f35e50b8850.tar.bz2
qmail-56fc66c631719e906ac426db40e37f35e50b8850.zip
fix compile errors
Diffstat (limited to 'realrcptto.c')
-rw-r--r--realrcptto.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/realrcptto.c b/realrcptto.c
index 7ec331a..98dc6e6 100644
--- a/realrcptto.c
+++ b/realrcptto.c
@@ -1,6 +1,6 @@
1#include <sys/types.h> 1#include <sys/types.h>
2#include <sys/stat.h> 2#include <sys/stat.h>
3#include <unistd.h> 3#include <stdlib.h>
4#include <pwd.h> 4#include <pwd.h>
5#include "auto_break.h" 5#include "auto_break.h"
6#include "auto_usera.h" 6#include "auto_usera.h"
@@ -17,6 +17,7 @@
17#include "substdio.h" 17#include "substdio.h"
18#include "env.h" 18#include "env.h"
19#include "slurpclose.h" 19#include "slurpclose.h"
20#include "readwrite.h"
20 21
21extern void die_nomem(); 22extern void die_nomem();
22extern void die_control(); 23extern void die_control();
@@ -37,7 +38,7 @@ static char *local;
37static struct passwd *pw; 38static struct passwd *pw;
38 39
39static char errbuf[128]; 40static char errbuf[128];
40static struct substdio sserr = SUBSTDIO_FDBUF(write,2,errbuf,sizeof errbuf); 41static substdio sserr = SUBSTDIO_FDBUF(write,2,errbuf,sizeof errbuf);
41 42
42static char pidbuf[64]; 43static char pidbuf[64];
43static char remoteipbuf[64]=" "; 44static char remoteipbuf[64]=" ";