diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | openbsd-compat/strlcat.c | 1 | ||||
-rw-r--r-- | openbsd-compat/strlcpy.c | 1 |
3 files changed, 3 insertions, 4 deletions
@@ -52,7 +52,8 @@ | |||
52 | - (djm) Bug #423: reorder setting of PAM_TTY and calling of PAM session | 52 | - (djm) Bug #423: reorder setting of PAM_TTY and calling of PAM session |
53 | management (now done in do_setusercontext). Largely from | 53 | management (now done in do_setusercontext). Largely from |
54 | michael_steffens AT hp.com | 54 | michael_steffens AT hp.com |
55 | 55 | - (djm) Fix openbsd-compat/ again - remove references to strl(cpy|cat).h | |
56 | |||
56 | 20030829 | 57 | 20030829 |
57 | - (bal) openbsd-compat/ clean up. Considate headers, add in Id on our | 58 | - (bal) openbsd-compat/ clean up. Considate headers, add in Id on our |
58 | files, and added missing license to header. | 59 | files, and added missing license to header. |
@@ -967,4 +968,4 @@ | |||
967 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. | 968 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. |
968 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au | 969 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au |
969 | 970 | ||
970 | $Id: ChangeLog,v 1.2936 2003/09/02 13:18:52 djm Exp $ | 971 | $Id: ChangeLog,v 1.2937 2003/09/02 13:33:42 djm Exp $ |
diff --git a/openbsd-compat/strlcat.c b/openbsd-compat/strlcat.c index da1a9fb41..cae16657c 100644 --- a/openbsd-compat/strlcat.c +++ b/openbsd-compat/strlcat.c | |||
@@ -25,7 +25,6 @@ static char *rcsid = "$OpenBSD: strlcat.c,v 1.11 2003/06/17 21:56:24 millert Exp | |||
25 | 25 | ||
26 | #include <sys/types.h> | 26 | #include <sys/types.h> |
27 | #include <string.h> | 27 | #include <string.h> |
28 | #include "strlcat.h" | ||
29 | 28 | ||
30 | /* | 29 | /* |
31 | * Appends src to string dst of size siz (unlike strncat, siz is the | 30 | * Appends src to string dst of size siz (unlike strncat, siz is the |
diff --git a/openbsd-compat/strlcpy.c b/openbsd-compat/strlcpy.c index 47adc42c5..c8fe29987 100644 --- a/openbsd-compat/strlcpy.c +++ b/openbsd-compat/strlcpy.c | |||
@@ -25,7 +25,6 @@ static char *rcsid = "$OpenBSD: strlcpy.c,v 1.8 2003/06/17 21:56:24 millert Exp | |||
25 | 25 | ||
26 | #include <sys/types.h> | 26 | #include <sys/types.h> |
27 | #include <string.h> | 27 | #include <string.h> |
28 | #include "strlcpy.h" | ||
29 | 28 | ||
30 | /* | 29 | /* |
31 | * Copy src to string dst of size siz. At most siz-1 characters | 30 | * Copy src to string dst of size siz. At most siz-1 characters |