summaryrefslogtreecommitdiff
path: root/pop3e.c
diff options
context:
space:
mode:
authorSunil Nimmagadda <sunil@sunilnimmagadda.com>2014-04-10 18:25:43 +0500
committerSunil Nimmagadda <sunil@sunilnimmagadda.com>2014-04-10 18:25:43 +0500
commitb8ce860618b3c173fb0246a723778139983220db (patch)
tree5bade539bbeac4b37e786f4a0e9e5d45657c4a03 /pop3e.c
parent89c7cc9a5e434e25bfcbd06ea633a8b411f0e6de (diff)
parentcf7e82705fd6b2a1edfa0e24f998f2eb6357d950 (diff)
pull in latest master.
Diffstat (limited to 'pop3e.c')
-rw-r--r--pop3e.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pop3e.c b/pop3e.c
index cb6f017..728df72 100644
--- a/pop3e.c
+++ b/pop3e.c
@@ -47,7 +47,7 @@ static void sig_handler(int, short, void *);
struct imsgev iev_pop3d;
void *ssl_ctx;
-pid_t
+void
pop3_main(int pair[2], struct passwd *pw)
{
extern struct session_tree sessions;
@@ -59,7 +59,7 @@ pop3_main(int pair[2], struct passwd *pw)
fatal("pop3e: fork");
if (pid > 0)
- return (pid);
+ return;
close(pair[0]);
setproctitle("pop3 engine");