diff options
author | Eric Faurot <eric@cvs.openbsd.org> | 2014-12-24 08:43:59 +0000 |
---|---|---|
committer | Eric Faurot <eric@cvs.openbsd.org> | 2014-12-24 08:43:59 +0000 |
commit | 43b73c4a84ecdf5beb73492828afd0334f74e2ce (patch) | |
tree | 01e1cade447c3cd91efdad0e32b9c5d43e17906c /usr.sbin/smtpd/ca.c | |
parent | 6d3505323e0e3c881986b3ac152339978fe2629f (diff) |
missing include
Diffstat (limited to 'usr.sbin/smtpd/ca.c')
-rw-r--r-- | usr.sbin/smtpd/ca.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/ca.c b/usr.sbin/smtpd/ca.c index 94e341f1ce9..11d691a688a 100644 --- a/usr.sbin/smtpd/ca.c +++ b/usr.sbin/smtpd/ca.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ca.c,v 1.11 2014/10/02 19:14:56 gilles Exp $ */ +/* $OpenBSD: ca.c,v 1.12 2014/12/24 08:43:58 eric Exp $ */ /* * Copyright (c) 2014 Reyk Floeter <reyk@openbsd.org> @@ -21,6 +21,7 @@ #include <sys/queue.h> #include <sys/socket.h> +#include <signal.h> #include <string.h> #include <stdlib.h> #include <unistd.h> |