diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | openbsd-compat/fake-rfc2553.c | 2 | ||||
-rw-r--r-- | openbsd-compat/setproctitle.c | 1 |
3 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,7 @@ | |||
1 | 20060817 | ||
2 | - (dtucker) [openbsd-compat/fake-rfc2553.c openbsd-compat/setproctitle.c] | ||
3 | Include stdlib.h for malloc and friends. | ||
4 | |||
1 | 20060816 | 5 | 20060816 |
2 | - (djm) [audit-bsm.c] Sprinkle in some headers | 6 | - (djm) [audit-bsm.c] Sprinkle in some headers |
3 | 7 | ||
@@ -5210,4 +5214,4 @@ | |||
5210 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 5214 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
5211 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 5215 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
5212 | 5216 | ||
5213 | $Id: ChangeLog,v 1.4479 2006/08/16 01:40:45 djm Exp $ | 5217 | $Id: ChangeLog,v 1.4480 2006/08/17 08:55:27 dtucker Exp $ |
diff --git a/openbsd-compat/fake-rfc2553.c b/openbsd-compat/fake-rfc2553.c index b69f7f13f..b6ea3d21e 100644 --- a/openbsd-compat/fake-rfc2553.c +++ b/openbsd-compat/fake-rfc2553.c | |||
@@ -36,6 +36,8 @@ | |||
36 | */ | 36 | */ |
37 | 37 | ||
38 | #include "includes.h" | 38 | #include "includes.h" |
39 | |||
40 | #include <stdlib.h> | ||
39 | #include <string.h> | 41 | #include <string.h> |
40 | 42 | ||
41 | #include <netinet/in.h> | 43 | #include <netinet/in.h> |
diff --git a/openbsd-compat/setproctitle.c b/openbsd-compat/setproctitle.c index 7fec73f89..b511f6649 100644 --- a/openbsd-compat/setproctitle.c +++ b/openbsd-compat/setproctitle.c | |||
@@ -36,6 +36,7 @@ | |||
36 | #ifndef HAVE_SETPROCTITLE | 36 | #ifndef HAVE_SETPROCTITLE |
37 | 37 | ||
38 | #include <stdarg.h> | 38 | #include <stdarg.h> |
39 | #include <stdlib.h> | ||
39 | #include <unistd.h> | 40 | #include <unistd.h> |
40 | #ifdef HAVE_SYS_PSTAT_H | 41 | #ifdef HAVE_SYS_PSTAT_H |
41 | #include <sys/pstat.h> | 42 | #include <sys/pstat.h> |