summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2010-10-12 13:30:44 +1100
committerDamien Miller <djm@mindrot.org>2010-10-12 13:30:44 +1100
commit9c0c31d2db8563b21e15d920ee589c891593a006 (patch)
treefff1d6dc21c2513eccbedc6fee8e05c2f3614135
parent47e57bfab40ba681edf47e136474fe30db2dab73 (diff)
- (djm) [sshconnect.c] Need signal.h for prototype for kill(2)
-rw-r--r--ChangeLog1
-rw-r--r--sshconnect.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 0f6b2c91..1f358d48 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
20101011
- (djm) [canohost.c] Zero a4 instead of addr to better match type.
bz#1825, reported by foo AT mailinator.com
+ - (djm) [sshconnect.c] Need signal.h for prototype for kill(2)
20101011
- (djm) [configure.ac] Use = instead of == in shell tests. Patch from
diff --git a/sshconnect.c b/sshconnect.c
index 2cbd47d0..78068c60 100644
--- a/sshconnect.c
+++ b/sshconnect.c
@@ -34,6 +34,7 @@
#include <paths.h>
#endif
#include <pwd.h>
+#include <signal.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>